-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.xml
More file actions
78 lines (75 loc) · 4.19 KB
/
config.xml
File metadata and controls
78 lines (75 loc) · 4.19 KB
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
71
72
73
74
75
76
77
<?xml version='1.0' encoding='utf-8'?>
<widget id="net.projecthunter" version="2.1.24" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>BITLOX</name>
<description>
Bitlox hardware wallet app
</description>
<author email="dev@bitlox.io" href="http://bitlox.io">
The Bitlox Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<platform name="ios">
<icon src="res/ios/icon-57.png" width="57" height="57" />
<icon src="res/ios/icon-72.png" width="72" height="72" />
<icon src="res/ios/icon-76.png" width="76" height="76" />
</platform>
<platform name="ios">
<!-- images are determined by width and height. The following are supported -->
<splash src="res/screen/ios/Default~iphone.png" width="320" height="480"/> <!-- CHECK -->
<splash src="res/screen/ios/Default@2x~iphone.png" width="640" height="960"/> <!-- CHECK -->
<splash src="res/screen/ios/Default-Portrait~ipad.png" width="768" height="1024"/>
<splash src="res/screen/ios/Default-Portrait@2x~ipad.png" width="1536" height="2048"/>
<splash src="res/screen/ios/Default-Landscape~ipad.png" width="1024" height="768"/>
<splash src="res/screen/ios/Default-Landscape@2x~ipad.png" width="2048" height="1536"/>
<splash src="res/screen/ios/Default-568h@2x~iphone.png" width="640" height="1136"/> <!-- CHECK -->
<splash src="res/screen/ios/Default-667h.png" width="750" height="1334"/>
<splash src="res/screen/ios/Default-736h.png" width="1242" height="2208"/>
<splash src="res/screen/ios/Default-Landscape-736h.png" width="2208" height="1242"/>
</platform>
<icon src="res/bitlox-app-logo-250.png" />
<platform name="android">
<icon src="res/android/icons/drawable-ldpi/icon.png" density="ldpi" />
<icon src="res/android/icons/drawable-mdpi/icon.png" density="mdpi" />
<icon src="res/android/icons/drawable-hdpi/icon.png" density="hdpi" />
<icon src="res/android/icons/drawable-xhdpi/icon.png" density="xhdpi" />
<icon src="res/android/icons/drawable-xxhdpi/icon.png" density="xxhdpi" />
<icon src="res/android/icons/drawable-xxxhdpi/icon.png" density="xxxhdpi" />
</platform>
<platform name="android">
<!-- you can use any density that exists in the Android project -->
<splash src="res/android/screens/drawable/screen.png" density="port"/>
<splash src="res/android/screens/drawable-land/screen.png" density="land"/>
<splash src="res/android/screens/drawable-land-hdpi/screen.png" density="land-hdpi"/>
<splash src="res/android/screens/drawable-land-ldpi/screen.png" density="land-ldpi"/>
<splash src="res/android/screens/drawable-land-mdpi/screen.png" density="land-mdpi"/>
<splash src="res/android/screens/drawable-land-xhdpi/screen.png" density="land-xhdpi"/>
<splash src="res/android/screens/drawable-land-xxhdpi/screen.png" density="land-xxhdpi"/>
<splash src="res/android/screens/drawable-land-xxxhdpi/screen.png" density="land-xxxhdpi"/>
<splash src="res/android/screens/drawable-hdpi/screen.png" density="port-hdpi"/>
<splash src="res/android/screens/drawable-ldpi/screen.png" density="port-ldpi"/>
<splash src="res/android/screens/drawable-mdpi/screen.png" density="port-mdpi"/>
<splash src="res/android/screens/drawable-xhdpi/screen.png" density="port-xhdpi"/>
<splash src="res/android/screens/drawable-xxhdpi/screen.png" density="port-xxhdpi"/>
<splash src="res/android/screens/drawable-xxxhdpi/screen.png" density="port-xxxhdpi"/>
</platform>
<feature name="StatusBar">
<param name="ios-package" value="CDVStatusBar" onload="true" />
<param name="StatusBarOverlaysWebview" value="false" />
</feature>
<preference name="BackupWebStorage" value="none" />
</widget>