kegs-android/app/src/main/AndroidManifest.xml

22 lines
1009 B
XML
Raw Normal View History

2012-08-07 00:04:38 +00:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.froop.app.kegs"
android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
2012-10-22 05:18:39 +00:00
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
2012-08-07 00:04:38 +00:00
2022-07-05 19:23:30 +00:00
<application android:theme="@style/Theme.BlackBackground" android:icon="@drawable/icon"
android:label="@string/app_name" android:description="@string/app_description" android:allowBackup="true">
2022-07-05 19:23:30 +00:00
<activity android:name="KegsMain" android:launchMode="singleInstance" android:configChanges="orientation|keyboard|keyboardHidden|screenSize" android:theme="@style/Theme.BlackBackground" android:exported="true">
2012-08-07 00:04:38 +00:00
2022-07-05 19:23:30 +00:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
2012-11-02 23:28:59 +00:00
2022-07-05 19:23:30 +00:00
</activity>
2012-08-07 00:04:38 +00:00
</application>
</manifest>