2012-08-07 00:04:38 +00: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-10 01:38:41 +00:00
|
|
|
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="16" />
|
2012-08-07 00:04:38 +00: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 10:41:05 +00:00
|
|
|
<uses-feature android:name="android.hardware.touchscreen.multitouch.distinct" android:required="false"/>
|
|
|
|
|
2012-08-12 07:12:20 +00:00
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name" android:description="@string/app_description" android:hardwareAccelerated="true">
|
2012-08-07 00:04:38 +00:00
|
|
|
<activity android:name="KegsMain" android:launchMode="singleInstance" android:configChanges="orientation|keyboardHidden|screenSize" android:windowSoftInputMode="stateAlwaysVisible|adjustPan">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|