-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
53 lines (49 loc) · 2.7 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.bondasediah.ump" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>BondaSediah</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" />
<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:*" />
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="StatusBarBackgroundColor" value="#000000" />
<preference name="DisallowOverscroll" value="true"/>
<platform name="android">
<allow-intent href="market:*" />
<icon background="res/android/ldpi.png" density="ldpi" foreground="res/android/ldpi.png" />
<icon background="res/android/mdpi.png" density="mdpi" foreground="res/android/mdpi.png" />
<icon background="res/android/hdpi.png" density="hdpi" foreground="res/android/hdpi.png" />
<icon background="res/android/xhdpi.png" density="xhdpi" foreground="res/android/xhdpi.png" />
<icon background="res/android/xxhdpi.png" density="xxhdpi" foreground="res/android/xxhdpi.png" />
<icon background="res/android/xxxhdpi.png" density="xxxhdpi" foreground="res/android/xxxhdpi.png" />
<splash src="res/screen/android/splash-port-hdpi.png" density="port-hdpi"/>
<splash src="res/screen/android/splash-port-ldpi.png" density="port-ldpi"/>
<splash src="res/screen/android/splash-port-mdpi.png" density="port-mdpi"/>
<splash src="res/screen/android/splash-port-xhdpi.png" density="port-xhdpi"/>
</platform>
<platform name="ios">
<icon src="res/ios/icon-60@3x.png" width="180" height="180" />
<icon src="res/ios/icon-60.png" width="60" height="60" />
<icon src="res/ios/icon-60@2x.png" width="120" height="120" />
<splash src="res/screen/ios/Default-667h.png" width="750" height="1334"/>
<splash src="res/screen/ios/Default-736h.png" width="1242" height="2208"/>
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<preference name="DisallowOverscroll" value="true"/>
<edit-config target="NSCameraUsageDescription" file="*-Info.plist" mode="merge">
<string>To scan barcodes</string>
</edit-config>
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>