60 lines
2.1 KiB
XML
60 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Created by Julian Mutter on 7/10/18 3:58 PM
|
|
~ Copyright (c) 2018. All rights reserved.
|
|
~ Last modified 7/10/18 3:54 PM
|
|
~
|
|
-->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="de.frajul.endlessroll"
|
|
android:versionCode="9"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="14"
|
|
android:targetSdkVersion="26" />
|
|
|
|
<uses-feature
|
|
android:glEsVersion="0x00020000"
|
|
android:required="true" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:debuggable="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:testOnly="true"
|
|
android:theme="@style/AppTheme" >
|
|
<activity
|
|
android:name="de.frajul.endlessroll.main.GameActivity"
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
|
android:screenOrientation="landscape" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<meta-data
|
|
android:name="android.support.VERSION"
|
|
android:value="26.1.0" /> <!-- Include the AdActivity and InAppPurchaseActivity configChanges and themes. -->
|
|
<activity
|
|
android:name="com.google.android.gms.ads.AdActivity"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
|
|
android:exported="false"
|
|
android:theme="@android:style/Theme.Translucent" />
|
|
|
|
<meta-data
|
|
android:name="com.google.android.gms.version"
|
|
android:value="@integer/google_play_services_version" />
|
|
<meta-data
|
|
android:name="android.arch.lifecycle.VERSION"
|
|
android:value="27.0.0-SNAPSHOT" />
|
|
</application>
|
|
|
|
</manifest> |