mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-15 17:54:48 +00:00
36 lines
1.6 KiB
XML
36 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.roguetemple.hyperroid"
|
|
android:versionCode="10505" android:versionName="10.5e"
|
|
android:installLocation="auto">
|
|
<!-- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> -->
|
|
<!-- <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="9" /> -->
|
|
<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"
|
|
android:launchMode="singleTask" >
|
|
<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>
|
|
|
|
<service android:name=".ForegroundService" >
|
|
</service>
|
|
|
|
<provider
|
|
android:name=".HyperProvider"
|
|
android:authorities="com.roguetemple.hyperroid"
|
|
android:exported="true"/>
|
|
</application>
|
|
</manifest>
|