-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
37 lines (26 loc) · 1.48 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
<?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.doersguild.procomp"
version = "1.1.1">
<name>ProGrade</name>
<description>Programmer Competency Calculator</description>
<preference name="target-device" value="universal" />
<preference name="android-targetSdkVersion" value="14" />
<preference name="splash-screen-duration" value="20000" />
<preference name="auto-hide-splash-screen" value="false" />
<preference name="orientation" value="default" />
<!-- If you do not want any permissions to be added to your app, add the
following tag to your config.xml; you will still have the INTERNET
permission on your app, which PhoneGap requires. -->
<preference name="permissions" value="none"/>
<access origin="*" subdomains="true" />
<author href="http://www.doersguild.com" email="[email protected]"> Doers' Guild </author>
<!-- Icons -->
<icon src="icon.png" gap:role="default" />
<icon src="icons/android/drawable-mdpi/ic_launcher.png" gap:platform="android" gap:density="mdpi" />
<icon src="icons/android/drawable-hdpi/ic_launcher.png" gap:platform="android" gap:density="hdpi" />
<icon src="icons/android/drawable-xhdpi/ic_launcher.png" gap:platform="android" gap:density="xhdpi" />
<icon src="icons/android/drawable-xxhdpi/ic_launcher.png" gap:platform="android" gap:density="xxhdpi" />
<gap:splash src="splash.png" />
</widget>