80 lines
3.5 KiB
XML
80 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="emu.project64" android:versionCode="1" android:versionName="1.0" >
|
|
|
|
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
|
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
|
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
|
|
|
|
<uses-permission android:name="com.android.vending.BILLING" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
<application
|
|
android:name="emu.project64.Project64Application"
|
|
android:allowBackup="true"
|
|
android:isGame="true"
|
|
android:hardwareAccelerated="true"
|
|
android:icon="@drawable/icon"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/appTheme" >
|
|
<activity
|
|
android:name="emu.project64.SplashActivity"
|
|
android:label="@string/SplashActivity_title"
|
|
android:theme="@style/Theme.Project64.Splash"
|
|
android:noHistory="true" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
<category android:name="tv.ouya.intent.category.GAME" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="emu.project64.GalleryActivity"
|
|
android:exported="false"
|
|
android:label="@string/GalleryActivity_title"
|
|
android:launchMode="singleTask"
|
|
android:theme="@style/Theme.Project64.Apearance" >
|
|
</activity>
|
|
<activity
|
|
android:name="emu.project64.ScanRomsActivity"
|
|
android:exported="false"
|
|
android:label="@string/ScanRomsActivity_title"
|
|
android:theme="@style/Theme.AppCompat" >
|
|
</activity>
|
|
<activity
|
|
android:name="emu.project64.persistent.GlobalPrefsActivity"
|
|
android:exported="false"
|
|
android:label="@string/SettingsGlobalActivity_title"
|
|
android:theme="@style/Theme.AppCompat" >
|
|
<intent-filter>
|
|
<action android:name=".persistent.GlobalPrefsActivity" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<!--
|
|
For the GameActivities, do not restart the activity when the phone's slider
|
|
opens or closes, or when the orientation (and thereby screen size) changes.
|
|
This behavior is specified in android:configChanges below.
|
|
-->
|
|
<activity
|
|
android:name="emu.project64.game.GameActivity"
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
android:label="@string/GameActivity_title"
|
|
android:theme="@style/appTheme.Black" >
|
|
</activity>
|
|
<activity
|
|
android:name="emu.project64.game.GameActivityXperiaPlay"
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
android:label="@string/GameActivity_title"
|
|
android:theme="@style/appTheme.Black" >
|
|
<meta-data
|
|
android:name="android.app.lib_name"
|
|
android:value="xperia-touchpad" />
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|