Created
January 1, 2013 23:52
config.xml for phonegap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<widget xmlns = "http://www.w3.org/ns/widgets" | |
xmlns:gap = "http://phonegap.com/ns/1.0" | |
id = "org.coderdojo.phonegap" | |
version = "0.0.1" | |
versionCode = "230"> | |
<name>CoderDojo Phone gap</name> | |
<description> | |
Demo getting started with Phonegap | |
</description> | |
<author href="https://github.com/noelking"> | |
Noel King | |
</author> | |
<feature name="http://api.phonegap.com/1.0/device" /> | |
<preference name="phonegap-version" value="2.2.0" /> | |
<preference name="orientation" value="portrait" /> | |
<preference name="target-device" value="universal" /> | |
<preference name="fullscreen" value="true" /> | |
<preference name="webviewbounce" value="true" /> | |
<preference name="prerendered-icon" value="true" /> | |
<preference name="exit-on-suspend" value="true" /> | |
<preference name="show-splash-screen-spinner" value="false" /> | |
<preference name="splash-screen-duration" value="3000" /> | |
<icon src="img/icons/coder.png"/> | |
<icon src="img/icons/coder.png" gap:platform="android" gap:density="ldpi" /> | |
<icon src="img/icons/coder.png" gap:platform="android" gap:density="mdpi" /> | |
<icon src="img/icons/coder.png" gap:platform="android" gap:density="hdpi" /> | |
<icon src="img/icons/coder.png" gap:platform="android" gap:density="xhdpi" /> | |
</widget> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment