aboutsummaryrefslogtreecommitdiffstats
path: root/org_apg/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'org_apg/AndroidManifest.xml')
-rw-r--r--org_apg/AndroidManifest.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/org_apg/AndroidManifest.xml b/org_apg/AndroidManifest.xml
index fe1bffaee..570cf72c2 100644
--- a/org_apg/AndroidManifest.xml
+++ b/org_apg/AndroidManifest.xml
@@ -24,6 +24,7 @@
<!--
General remarks
===============
+ - Last APG 1 version was 10900 (1.0.9 beta 00)
- APG 2 starting with versionCode 20000!
@@ -88,6 +89,7 @@
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
+ <!-- APG's own Actions -->
<intent-filter android:label="@string/intent_import_key" >
<action android:name="org.thialfihar.android.apg.intent.IMPORT" />
@@ -95,6 +97,7 @@
<data android:mimeType="*/*" />
</intent-filter>
+ <!-- Linking "Import key" to file types -->
<intent-filter android:label="@string/intent_import_key" >
<action android:name="android.intent.action.VIEW" />
@@ -212,6 +215,8 @@
android:label="@string/title_encrypt"
android:uiOptions="splitActionBarWhenNarrow"
android:windowSoftInputMode="stateHidden" >
+
+ <!-- APG's own Actions -->
<intent-filter>
<action android:name="org.thialfihar.android.apg.intent.ENCRYPT" />
<action android:name="org.thialfihar.android.apg.intent.ENCRYPT_FILE" />
@@ -222,6 +227,14 @@
<data android:mimeType="*/*" />
</intent-filter>
+ <!-- Android's Send Action -->
+ <intent-filter android:label="@string/intent_send_encrypt" >
+ <action android:name="android.intent.action.SEND" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+
+ <data android:mimeType="*/*" />
+ </intent-filter>
</activity>
<activity
android:name=".ui.DecryptActivity"
@@ -229,6 +242,8 @@
android:label="@string/title_decrypt"
android:uiOptions="splitActionBarWhenNarrow"
android:windowSoftInputMode="stateHidden" >
+
+ <!-- APG's own Actions -->
<intent-filter>
<action android:name="org.thialfihar.android.apg.intent.DECRYPT" />
<action android:name="org.thialfihar.android.apg.intent.DECRYPT_FILE" />
@@ -238,6 +253,15 @@
<data android:mimeType="*/*" />
</intent-filter>
+ <!-- Android's Send Action -->
+ <intent-filter android:label="@string/intent_send_decrypt" >
+ <action android:name="android.intent.action.SEND" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+
+ <data android:mimeType="*/*" />
+ </intent-filter>
+ <!-- Linking "Decrypt" to file types -->
<intent-filter android:label="@string/intent_decrypt_file" >
<action android:name="android.intent.action.VIEW" />