forked from jkrause/tabris-js-cordova-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
68 lines (62 loc) · 3.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
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
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.eclipsesource.cordova.test" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:gap="http://phonegap.com/ns/1.0">
<name>Tabris Cordova Test</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="[email protected]" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<access origin="*" />
<gap:plugin name="org.apache.cordova.camera" />
<gap:plugin name="org.apache.cordova.dialogs" />
<gap:plugin name="org.apache.cordova.device-motion" />
<gap:plugin name="org.apache.cordova.network-information" />
<gap:plugin name="nl.x-services.plugins.toast" />
<preference name="EnableDeveloperConsole" value="true"/>
<platform name="android">
<icon src="resources/android/drawable-mdpi/ic_launcher.png" density="mdpi" />
<icon src="resources/android/drawable-hdpi/ic_launcher.png" density="hdpi" />
<icon src="resources/android/drawable-xhdpi/ic_launcher.png" density="xhdpi" />
<icon src="resources/android/drawable-xxhdpi/ic_launcher.png" density="xxhdpi" />
<icon src="resources/android/drawable-xxxhdpi/ic_launcher.png" density="xxxhdpi" />
</platform>
<platform name="ios">
<!-- iOS 8.0+ -->
<icon src="resources/ios/icons/[email protected]" width="180" height="180" />
<!-- iOS 7.0+ -->
<!-- iPhone / iPod Touch -->
<icon src="resources/ios/icons/Icon-60.png" width="60" height="60" />
<icon src="resources/ios/icons/[email protected]" width="120" height="120" />
<!-- iPad -->
<icon src="resources/ios/icons/Icon-76.png" width="76" height="76" />
<icon src="resources/ios/icons/[email protected]" width="152" height="152" />
<!-- iOS 6.1 -->
<!-- Spotlight Icon -->
<icon src="resources/ios/icons/Icon-Spotlight-40.png" width="40" height="40" />
<icon src="resources/ios/icons/[email protected]" width="80" height="80" />
<!-- iPhone / iPod Touch -->
<icon src="resources/ios/icons/Icon.png" width="57" height="57" />
<icon src="resources/ios/icons/[email protected]" width="114" height="114" />
<!-- iPad -->
<icon src="resources/ios/icons/Icon-72.png" width="72" height="72" />
<icon src="resources/ios/icons/[email protected]" width="144" height="144" />
<!-- iPhone Spotlight and Settings Icon -->
<icon src="resources/ios/icons/Icon-Small.png" width="29" height="29" />
<icon src="resources/ios/icons/[email protected]" width="58" height="58" />
<!-- iPad Spotlight and Settings Icon -->
<icon src="resources/ios/icons/Icon-50.png" width="50" height="50" />
<icon src="resources/ios/icons/[email protected]" width="100" height="100" />
<splash src="resources/ios/splash/iPhone-320×480.png" width="320" height="480"/>
<splash src="resources/ios/splash/iPhone-640×960.png" width="640" height="960"/>
<splash src="resources/ios/splash/iPad-768×1024.png" width="768" height="1024"/>
<splash src="resources/ios/splash/iPad-1536×2048.png" width="1536" height="2048"/>
<splash src="resources/ios/splash/iPad-1024×768.png" width="1024" height="768"/>
<splash src="resources/ios/splash/iPad-2048×1536.png" width="2048" height="1536"/>
<splash src="resources/ios/splash/iPhone-640×1136.png" width="640" height="1136"/>
<splash src="resources/ios/splash/iPhone-750×1334.png" width="750" height="1334"/>
<splash src="resources/ios/splash/iPad-1242×2208.png" width="1242" height="2208"/>
<splash src="resources/ios/splash/iPhone-2208x1242.png" width="2208" height="1242"/>
</platform>
</widget>