-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.xml
21 lines (20 loc) · 926 Bytes
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.lucaspaulger.cribbagegame" version="0.1.4" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>CribbageTheGame</name>
<description>
A simple HTML5/JS Cribbage game
</description>
<author email="[email protected]" href="http://lucaspaulger.com">
Lucas Paulger
</author>
<content src="index.html" />
<access origin="*" />
<access origin="mailto:*" launch-external="yes"/>
<platform name="android">
<icon src="res/mipmap-mdpi/ic_launcher.png" density="mdpi" />
<icon src="res/mipmap-hdpi/ic_launcher.png" density="hdpi" />
<icon src="res/mipmap-xhdpi/ic_launcher.png" density="xhdpi" />
<icon src="res/mipmap-xxhdpi/ic_launcher.png" density="xxhdpi" />
<icon src="res/mipmap-xxxhdpi/ic_launcher.png" density="xxxhdpi" />
</platform>
</widget>