Files
gitea-docker/android/AndroidManifest.template.xml
2018-01-04 21:54:21 -08:00

46 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="tickstales.core"
android:versionCode="{{version-code}}"
android:versionName="{{version-name}}" >
<uses-sdk android:minSdkVersion="15"
android:targetSdkVersion="{{target-version}}" />
<uses-permission android:name="com.android.vending.BILLING" />
<application
android:name="neko.App"
android:icon="@drawable/ic_launcher"
android:hardwareAccelerated="true"
android:largeHeap="true"
android:label="Tick's Tales">
<meta-data android:name="com.google.android.gms.games.APP_ID"
android:value="@string/app_id"/>
<activity android:name="advent.core.SplashActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:screenOrientation="landscape"
android:configChanges="orientation|keyboardHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name="advent.core.MainActivity"
android:screenOrientation="landscape"
android:configChanges="orientation|keyboardHidden" >
<intent-filter>
<action android:name='advent.core.MAIN'/>
<category android:name='android.intent.category.DEFAULT'/>
</intent-filter>
</activity>
</application>
{{#debug-build}}
<!-- Inside this section the permission will work only in debug builds (this is -->
<!-- needed for remote REPL). If your application logic requires Internet -->
<!-- permission too, move it out of the section. -->
<uses-permission android:name="android.permission.INTERNET"/>
{{/debug-build}}
</manifest>