Game Development Reference
In-Depth Information
The Complete Configuration File for Fakezee
We have only scratched the surface of the features available within PhoneGap, and the available elements for your
configuration files extend much further than what is needed for the Fakezee game. As your games and applications
progress in size and complexity, you'll need more elements so that your PhoneGap application properly builds and runs.
Listing 13-8 shows the entire config.xml file.
Listing 13-8. config.xml - The Complete Configuration XML File
<?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.games.fakezee"
version="1.0.0">
<name>Fakezee</name>
<description>
Fakezee is a dice game that is fun for everyone!
</description>
<author href="{insert your url here}" email="{insert your support email
here}">
Fun Times Games
</author>
<gap:platform name="ios"/>
<gap:platform name="android"/>
<!--IOS-->
<icon src="icons/apple-touch-icon-57x57.png" gap:platform="ios"
width="57" height="57" />
<icon src="icons/apple-touch-icon-72x72.png" gap:platform="ios"
width="72" height="72" />
<icon src="icons/apple-touch-icon-114x114.png" gap:platform="ios"
width="114" height="114" />
<icon src="icons/apple-touch-icon-144x144.png" gap:platform="ios"
width="144" height="144" />
<gap:splash src="splash/apple-touch-startup-image-320x480.png"
gap:platform="ios" width="320" height="480" />
<gap:splash src="splash/apple-touch-startup-image-640x960.png"
gap:platform="ios" width="640" height="960" />
<gap:splash src="splash/apple-touch-startup-image-640x1136.png"
gap:platform="ios" width="640" height="1136" />
<gap:splash src="splash/apple-touch-startup-image-1024x748.png"
gap:platform="ios" width="1024" height="748" />
<gap:splash src="splash/apple-touch-startup-image-768x1004.png"
gap:platform="ios" width="768" height="1004" />
 
Search WWH ::




Custom Search