2015-02-15 09:52:27 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.deadc0de.apple2"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk android:minSdkVersion="10"/>
|
|
|
|
<supports-screens android:resizeable="true" android:normalScreens="true" android:largeScreens="true" android:smallScreens="false"/>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
|
|
|
|
<application
|
|
|
|
android:debuggable="true"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name">
|
|
|
|
<activity
|
|
|
|
android:name=".Apple2Activity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:screenOrientation="portrait"
|
2015-02-18 11:34:09 -08:00
|
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation"
|
2015-02-15 09:52:27 -08:00
|
|
|
android:windowSoftInputMode="adjustPan">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|