summaryrefslogtreecommitdiff
path: root/android/AndroidManifest.xml
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2022-12-24 18:17:04 +0600
committerilotterytea <iltsu@alright.party>2022-12-24 18:17:04 +0600
commitc6d944bc8d3c86695a25b0a19cb4ab9baf0ec694 (patch)
tree43ecf7d5c589c99bff6560a04bf74c2413e776d9 /android/AndroidManifest.xml
parentdd82481dd42f71ef4886f1a63eacf9456883c5d2 (diff)
Removed 'android' module because it was moved to maxoning/pocket repository.
Diffstat (limited to 'android/AndroidManifest.xml')
-rw-r--r--android/AndroidManifest.xml30
1 files changed, 0 insertions, 30 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
deleted file mode 100644
index 344d39f..0000000
--- a/android/AndroidManifest.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- package="com.ilotterytea.maxoning">
-
- <uses-feature android:glEsVersion="0x00020000" android:required="true" />
- <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
-
- <application
- android:allowBackup="true"
- android:fullBackupContent="true"
- android:icon="@drawable/maxon"
- android:isGame="true"
- android:appCategory="game"
- android:label="@string/app_name"
- tools:ignore="UnusedAttribute">
- <activity
- android:name="com.ilotterytea.maxoning.AndroidLauncher"
- android:label="@string/app_name"
- android:screenOrientation="portrait"
- android:configChanges="keyboard|keyboardHidden|navigation|orientation|screenSize|screenLayout"
- android:exported="true">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
-
-</manifest>