|
@@ -59,6 +59,33 @@
|
|
|
<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" />
|
|
|
+ <data android:scheme="content" />
|
|
|
+ <data android:host="*" />
|
|
|
+ <data android:mimeType="*/*" />
|
|
|
+
|
|
|
+ <!--
|
|
|
+ Work around Android's ugly primitive PatternMatcher
|
|
|
+ implementation that can't cope with finding a . early in
|
|
|
+ the path unless it's explicitly matched.
|
|
|
+
|
|
|
+ See https://stackoverflow.com/a/31028507
|
|
|
+ -->
|
|
|
+ <data android:pathPattern=".*\\.tachibk" />
|
|
|
+ <data android:pathPattern=".*\\..*\\.tachibk" />
|
|
|
+ <data android:pathPattern=".*\\..*\\..*\\.tachibk" />
|
|
|
+ <data android:pathPattern=".*\\..*\\..*\\..*\\.tachibk" />
|
|
|
+ <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.tachibk" />
|
|
|
+ <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.tachibk" />
|
|
|
+ <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\..*\\.tachibk" />
|
|
|
+ </intent-filter>
|
|
|
+
|
|
|
<!--suppress AndroidDomInspection -->
|
|
|
<meta-data
|
|
|
android:name="android.app.shortcuts"
|