-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
54 lines (46 loc) · 3.2 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
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "fr.cfdict.hsk"
version = "0.4.0"
versionCode = "0.4.0">
<!-- http://docs.build.phonegap.com/en_US/3.1.0/configuring_preferences.md.html#Preferences -->
<preference name="phonegap-version" value="3.5.0" />
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="false" />
<preference name="android-installLocation" value="auto" />
<name>HSK App (beta)</name>
<description> Beta HSK Application for smartphone. </description>
<author href="https://dev.cfdict.net" real="cfdict.fr!" email="hugo.lpz@gmail.com"> HL</author>
<feature name="http://api.phonegap.com/1.0/device" />
<content src="html/index.html" />
<gap:platforms>
<gap:platform name="ios" />
<gap:platform name="android" />
<gap:platform name="winphone" />
</gap:platforms>
<gap:plugin name="org.apache.cordova.media" version="0.2.13" />
<gap:plugin name="org.apache.cordova.file" version="1.3.1" />
<icon src="icon.png" /><!--
<icon src="res/icon/android/icon-36-ldpi.png" gap:platform="android" gap:density="ldpi" />
<icon src="res/icon/android/icon-48-mdpi.png" gap:platform="android" gap:density="mdpi" />
<icon src="res/icon/android/icon-72-hdpi.png" gap:platform="android" gap:density="hdpi" />
<icon src="res/icon/android/icon-96-xhdpi.png" gap:platform="android" gap:density="xhdpi" />
<icon src="res/icon/ios/icon-57.png" gap:platform="ios" width="57" height="57" />
<icon src="res/icon/ios/icon-72.png" gap:platform="ios" width="72" height="72" />
<icon src="res/icon/ios/icon-57-2x.png" gap:platform="ios" width="114" height="114" />
<icon src="res/icon/ios/icon-72-2x.png" gap:platform="ios" width="144" height="144" />
<icon src="res/icon/wp/icon.png" gap:platform="winphone" width="62" height="62"/>
<icon src="res/icon/wp/tileicon.png" gap:platform="winphone" gap:role="background" width="173" height="173"/> -->
<gap:splash src="splash.png" /><!--
<gap:splash src="res/screen/android/screen-ldpi-portrait.png" gap:platform="android" gap:density="ldpi" />
<gap:splash src="res/screen/android/screen-mdpi-portrait.png" gap:platform="android" gap:density="mdpi" />
<gap:splash src="res/screen/android/screen-hdpi-portrait.png" gap:platform="android" gap:density="hdpi" />
<gap:splash src="res/screen/android/screen-xhdpi-portrait.png" gap:platform="android" gap:density="xhdpi" />
<gap:splash src="res/screen/ios/screen-iphone-portrait.png" gap:platform="ios" width="320" height="480" />
<gap:splash src="res/screen/ios/screen-iphone-portrait-2x.png" gap:platform="ios" width="640" height="960" />
<gap:splash src="res/screen/ios/screen-ipad-portrait.png" gap:platform="ios" width="768" height="1024" />
<gap:splash src="res/screen/ios/screen-ipad-landscape.png" gap:platform="ios" width="1024" height="768" />
<gap:splash src="res/screen/wp/wp.jpg" gap:platform="winphone" width="480" height="800" /> -->
</widget>