forked from morristech/Phonegap_skeleton_android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
39 lines (24 loc) · 1.19 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 xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.developer.app"
version = "1.0.0">
<name>App Name</name>
<description>
A cool app description.
</description>
<author href="https://yourwebsite.com" email="mitch@mitchs.co">
Studio Nice
</author>
<preference name="phonegap-version" value="2.7.0" />
<preference name="orientation" value="portrait" />
<preference name="splash-screen-duration" value="3500" />
<gap:splash src="images/splash.png" />
<icon src="images/icons/ldpi.png" gap:platform="android" gap:density="ldpi" />
<icon src="images/icons/mdpi.png" gap:platform="android" gap:density="mdpi" />
<icon src="images/icons/hdpi.png" gap:platform="android" gap:density="hdpi" />
<icon src="images/icons/xhdpi.png" gap:platform="android" gap:density="xhdpi" />
<preference name="permissions" value="none"/>
<preference name="stay-in-webview" value="false" />
<preference name="android-minSdkVersion" value="5" />
</widget>