Make your HTML5 games run on Android devices with Cordova and Android Studio – Running on actual devices
Talking about Android, Game development, HTML5, Javascript and Phaser.
Learn cross platform HTML5 game development
Check my Gumroad page for commented source code, games and books.



xml
folder? It contains a file called config.xml
which will be very useful to edit some more information:
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.cordova.hellocordova" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<preference name="loglevel" value="DEBUG" />
<feature name="Whitelist">
<param name="android-package" value="org.apache.cordova.whitelist.WhitelistPlugin" />
<param name="onload" value="true" />
</feature>
<allow-intent href="market:*" />
<name>Drawsum</name>
<description>
Math match game by Emanuele Feronato
</description>
<author email="info@emanueleferonato.com" href="mailto:info@emanueleferonato.com">
Apache Cordova Team
</author>
<content src="index.html" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
</widget>
Never miss an update! Subscribe, and I will bother you by email only when a new game or full source code comes out.