-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.xml
24 lines (24 loc) · 1.24 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.radicalbumble.chronaltactics" version="0.0.4" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Chronal Tactics</name>
<description>
Chronal Tactics is a multiplayer, turn-based real-time strategy combat game.
</description>
<author email="g.crocker3@gmail.com" href="https://radicalbumble.com/">
George Crocker
</author>
<content src="index.html" />
<access origin="*" />
<preference name="Orientation" value="landscape" />
<preference name="Fullscreen" value="true" />
<preference name="BackgroundColor" value="0xff000000" />
<preference name="LoadUrlTimeoutValue" value="60000" />
<plugin name="cordova-plugin-screen-orientation" spec="^3.0.1" />
<plugin name="cordova-plugin-whitelist" spec="^1.3.3" />
<platform name="android">
<resource-file src="styles.xml" target="app/src/main/res/values/styles.xml" />
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application/activity">
<activity android:theme="@style/FullscreenNotch" />
</edit-config>
</platform>
</widget>