bashgid/android/AndroidManifest.xml

30 lines
992 B
XML
Raw Normal View History

2014-10-23 16:58:47 +00:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fishrungames.bashgid"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:hardwareAccelerated="true" >
<activity
android:name=".MainActivity"
2014-10-24 04:31:52 +00:00
android:label="@string/app_name"
android:configChanges="orientation"
android:screenOrientation="portrait" >
2014-10-23 16:58:47 +00:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>