1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-14 09:26:52 +00:00
hyperrogue/hyperroid/app/src/main/AndroidManifest.xml

37 lines
1.7 KiB
XML
Raw Normal View History

2017-03-23 12:54:10 +00:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.roguetemple.hyperroid"
2024-01-13 08:03:12 +00:00
android:versionCode="13001" android:versionName="13.0a"
2017-03-23 12:54:10 +00:00
android:installLocation="auto">
<!-- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> -->
<!-- <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="9" /> -->
2021-06-06 08:50:16 +00:00
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
2017-03-23 12:54:10 +00:00
<application android:label="@string/app_name"
android:icon="@drawable/icon"
android:allowBackup="true">
<activity android:label="@string/app_name"
android:windowSoftInputMode="adjustResize"
android:configChanges="orientation|keyboardHidden|screenSize"
android:name=".HyperRogue"
2022-07-17 12:48:08 +00:00
android:launchMode="singleTask" android:exported="true">
2017-03-23 12:54:10 +00:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:label="HyperRogue Settings"
android:windowSoftInputMode="adjustResize"
android:configChanges="orientation|keyboardHidden|screenSize"
android:name=".HyperSettings">
</activity>
2022-07-12 22:02:03 +00:00
<service android:name=".ForegroundService" android:exported="false">
2017-03-23 12:54:10 +00:00
</service>
<provider
android:name=".HyperProvider"
android:authorities="com.roguetemple.hyperroid"
android:exported="true"/>
</application>
</manifest>