2017-11-22 00:09:35 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-03-02 05:44:53 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-01-02 22:07:47 +02:00
|
|
|
package="com.unciv.app" >
|
2017-11-22 00:09:35 +02:00
|
|
|
|
2018-02-23 13:31:45 +02:00
|
|
|
<uses-sdk/>
|
2017-11-22 00:09:35 +02:00
|
|
|
|
2018-12-09 19:47:21 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2020-12-01 23:26:01 +02:00
|
|
|
<!-- See https://developer.android.com/training/tv/start/start -->
|
|
|
|
<uses-feature android:name="android.software.leanback" android:required="false" />
|
|
|
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
2018-12-09 19:47:21 +02:00
|
|
|
|
2017-11-22 00:09:35 +02:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2018-08-27 14:35:49 +03:00
|
|
|
android:icon="@drawable/uncivicon2"
|
2017-11-22 00:09:35 +02:00
|
|
|
android:label="@string/app_name"
|
2019-11-27 20:44:15 +02:00
|
|
|
android:isGame="true"
|
2020-12-01 23:26:01 +02:00
|
|
|
android:appCategory="game"
|
|
|
|
android:banner="@drawable/banner"
|
2017-11-22 00:09:35 +02:00
|
|
|
android:theme="@style/GdxTheme" >
|
|
|
|
<activity
|
2019-01-02 22:07:47 +02:00
|
|
|
android:name="com.unciv.app.AndroidLauncher"
|
2020-02-17 17:34:46 +01:00
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:label="@string/app_name"
|
2019-10-31 13:46:16 +00:00
|
|
|
android:screenOrientation="userLandscape"
|
2020-03-02 05:44:53 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
|
|
tools:ignore="LockedOrientationActivity">
|
2017-11-22 00:09:35 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2020-12-01 23:26:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name="com.unciv.app.AndroidTvLauncher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/GdxTheme">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
</activity>
|
2020-03-02 05:44:53 +01:00
|
|
|
<receiver android:name=".CopyToClipboardReceiver" android:exported="false" />
|
2017-11-22 00:09:35 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|