mirror of
https://github.com/jamessanford/kegs.git
synced 2025-01-06 16:30:18 +00:00
78 lines
4.2 KiB
XML
78 lines
4.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.froop.app.kegs"
|
|
android:versionCode="9"
|
|
android:versionName="0.8beta"
|
|
android:installLocation="auto">
|
|
|
|
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="18" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-feature android:name="android.hardware.touchscreen.multitouch.distinct" android:required="false"/>
|
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name" android:description="@string/app_description" android:hardwareAccelerated="true">
|
|
<activity android:name="KegsMain" android:launchMode="singleInstance" android:configChanges="orientation|keyboard|keyboardHidden|screenSize" android:theme="@style/Theme.BlackBackground">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="file" android:host="*" android:mimeType="application/zip" />
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<!-- Yeah, this is pretty much awful. Blame PatternMatcher -->
|
|
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*2mg" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*dsk" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*nib" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*hdv" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*po" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*do" />
|
|
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*2MG" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*DSK" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*NIB" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*HDV" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*PO" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*DO" />
|
|
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*2mg.gz" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*dsk.gz" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*nib.gz" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*hdv.gz" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*po.gz" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*do.gz" />
|
|
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*2MG.gz" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*DSK.gz" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*NIB.gz" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*HDV.gz" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*PO.gz" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*DO.gz" />
|
|
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*2MG.GZ" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*DSK.GZ" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*NIB.GZ" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*HDV.GZ" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*PO.GZ" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*DO.GZ" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
</application>
|
|
</manifest>
|