-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathconfig.xml
70 lines (70 loc) · 3.31 KB
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.aeternity.base" version="1.0.2" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Base æpp</name>
<author href="https://aeternity.com">
aeternity developers
</author>
<content src="index.html" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<allow-intent href="airgap-vault:*" />
<access origin="*" />
<platform name="android">
<allow-intent href="market:*" />
<preference name="SplashMaintainAspectRatio" value="true" />
<preference name="HeaderColor" value="#ff0d6a" />
<preference name="AndroidInsecureFileModeEnabled" value="true" />
<preference name="StatusBarOverlaysWebView" value="false" />
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
<application android:usesCleartextTraffic="true" />
</edit-config>
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<allow-navigation href="*" />
<preference name="UseSwiftLanguageVersion" value="5" />
<preference name="DisallowOverscroll" value="true" />
<config-file target="*-Debug.plist" parent="com.apple.developer.associated-domains">
<array>
<string>applinks:base.aepps.com</string>
</array>
</config-file>
<config-file target="*-Release.plist" parent="com.apple.developer.associated-domains">
<array>
<string>applinks:base.aepps.com</string>
</array>
</config-file>
<preference name="WKWebViewOnly" value="true" />
<feature name="CDVWKWebViewEngine">
<param name="ios-package" value="CDVWKWebViewEngine" />
</feature>
<preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine" />
</platform>
<preference name="SplashScreen" value="screen" />
<preference name="ShowSplashScreenSpinner" value="false" />
<feature name="SplashScreen">
<param name="onload" value="true" />
</feature>
<preference name="StatusBarBackgroundColor" value="#ff0d6a" />
<plugin name="cordova-plugin-splashscreen" spec="^6.0.0" />
<plugin name="cordova-plugin-network-information" spec="^3.0.0" />
<plugin name="cordova-plugin-qrscanner" spec="^3.0.1" />
<plugin name="cordova-plugin-inappbrowser" spec="^5.0.0" />
<plugin name="com.lampa.startapp" spec="^6.1.6" />
<plugin name="cordova-plugin-x-socialsharing" spec="^6.0.3" />
<plugin name="cordova-plugin-statusbar" spec="^3.0.0" />
<plugin name="cordova-plugin-headercolor" spec="^1.0.0" />
<plugin name="cordova-clipboard" spec="^1.3.0" />
<plugin name="ionic-plugin-deeplinks" spec="^1.0.24">
<variable name="URL_SCHEME" value="aepp-base" />
<variable name="DEEPLINK_HOST" value="base.aepps.com" />
</plugin>
<plugin name="cordova-plugin-androidx-adapter" spec="^1.1.3" />
<engine name="android" spec="^10.1.1" />
<engine name="ios" spec="^6.2.0" />
</widget>