-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.xml
39 lines (39 loc) · 1.83 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.cordova.hellocordova" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>BitShares Wallet</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</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="*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<allow-intent href="blob:*" />
<allow-intent href="http:*"/>
<platform name="android">
<hook src="plugins/install_plugins.js" type="after_platform_add" />
<icon src="www/app/assets/img/icon.PNG" density="ldpi" />
<icon src="www/app/assets/img/icon.PNG" density="mdpi" />
<icon src="www/app/assets/img/icon.PNG" density="hdpi" />
<icon src="www/app/assets/img/icon.PNG" density="xhdpi" />
<icon src="www/app/assets/img/icon.PNG" density="xxhdpi" />
<icon src="www/app/assets/img/icon.PNG" density="xxxhdpi" />
<config-file parent="/*" target="config.xml">
<feature name="Echo">
<param name="android-package" value="org.apache.cordova.plugin.SocialSharing" />
</feature>
</config-file>
</platform>
<preference name="xwalkVersion" value="15+" />
<preference name="xwalkCommandLine" value="--disable-pull-to-refresh-effect" />
<preference name="xwalkMode" value="embedded" />
<preference name="xwalkMultipleApk" value="true" />
</widget>