aboutsummaryrefslogtreecommitdiffstats
path: root/APG/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'APG/AndroidManifest.xml')
-rw-r--r--APG/AndroidManifest.xml10
1 files changed, 8 insertions, 2 deletions
diff --git a/APG/AndroidManifest.xml b/APG/AndroidManifest.xml
index c29626ccf..caa1eb5c1 100644
--- a/APG/AndroidManifest.xml
+++ b/APG/AndroidManifest.xml
@@ -307,13 +307,19 @@
<!-- APG's own Actions -->
<intent-filter android:label="@string/intent_import_key" >
<action android:name="org.thialfihar.android.apg.intent.IMPORT" />
- <action android:name="org.thialfihar.android.apg.intent.IMPORT_FROM_QR_CODE" />
- <action android:name="org.thialfihar.android.apg.intent.IMPORT_FROM_NFC" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
</intent-filter>
+ <!-- IMPORT again without mimeType to also allow data only without filename -->
+ <intent-filter android:label="@string/intent_import_key" >
+ <action android:name="org.thialfihar.android.apg.intent.IMPORT" />
+ <action android:name="org.thialfihar.android.apg.intent.IMPORT_FROM_QR_CODE" />
+ <action android:name="org.thialfihar.android.apg.intent.IMPORT_FROM_NFC" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
<!-- Linking "Import key" to file types -->
<intent-filter android:label="@string/intent_import_key" >
<action android:name="android.intent.action.VIEW" />