2012-08-06 17:04:38 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.froop.app.kegs"
|
|
|
|
android:installLocation="auto">
|
|
|
|
|
2012-08-09 18:38:41 -07:00
|
|
|
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="16" />
|
2012-08-06 17:04:38 -07:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
|
2012-08-21 03:41:05 -07:00
|
|
|
<uses-feature android:name="android.hardware.touchscreen.multitouch.distinct" android:required="false"/>
|
|
|
|
|
2012-08-12 00:12:20 -07:00
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name" android:description="@string/app_description" android:hardwareAccelerated="true">
|
2012-10-02 19:48:17 -07:00
|
|
|
<activity android:name="KegsMain" android:launchMode="singleInstance" android:configChanges="orientation|keyboard|keyboardHidden|screenSize" android:theme="@style/Theme.BlackBackground">
|
2012-08-06 17:04:38 -07:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|