This repository has been archived by the owner on Aug 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.xml
executable file
·49 lines (49 loc) · 2.23 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="de.bitsharesmunich.wallet" version="1.0.5" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>BitShares Wallet</name>
<description>
Multiplatform BitShares wallet.
</description>
<author email="[email protected]" href="http://bitshares-munich.de/">
BitShares Munich
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" version="1" />
<plugin name="nl.x-services.plugins.socialsharing" version="4.3.16" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<hook src="plugins/install_plugins.js" type="after_platform_add" />
<icon density="ldpi" src="www/app/assets/img/icon.PNG" />
<icon density="mdpi" src="www/app/assets/img/icon.PNG" />
<icon density="hdpi" src="www/app/assets/img/icon.PNG" />
<icon density="xhdpi" src="www/app/assets/img/icon.PNG" />
<icon density="xxhdpi" src="www/app/assets/img/icon.PNG" />
<icon density="xxxhdpi" src="www/app/assets/img/icon.PNG" />
<config-file parent="/*" target="config.xml">
<feature name="Echo">
<param name="android-package" value="org.apache.cordova.plugin.SocialSharing" />
</feature>
</config-file>
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<hook src="plugins/install_plugins.js" type="after_platform_add" />
<feature name="File">
<param name="ios-package" value="CDVFile" />
</feature>
<preference name="DisallowOverscroll" value="true" />
<preference name="UIWebViewBounce" value="false" />
</platform>
<preference name="xwalkVersion" value="17+" />
<preference name="xwalkCommandLine" value="--disable-pull-to-refresh-effect" />
<preference name="xwalkMode" value="embedded" />
<preference name="xwalkMultipleApk" value="true" />
</widget>