bashgid/android/AndroidManifest.xml

33 lines
1.1 KiB
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"
2014-11-12 03:34:24 +00:00
android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.INTERNET" />
2014-10-23 16:58:47 +00:00
<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" />
2014-11-20 10:57:28 +00:00
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
2014-11-20 10:57:28 +00:00
2014-10-23 16:58:47 +00:00
</application>
</manifest>