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"
|
2019-01-24 13:45:59 +00:00
|
|
|
android:versionCode="10505" android:versionName="10.5e"
|
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" /> -->
|
|
|
|
<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>
|