diff options
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 2f90dc154..6e3169189 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -53,12 +53,28 @@ <activity android:name=".SelectPublicKeyListActivity" android:label="@string/title_selectRecipients" - android:configChanges="keyboardHidden|orientation|keyboard"/> + android:configChanges="keyboardHidden|orientation|keyboard"> + + <intent-filter> + <action android:name="org.thialfihar.android.apg.intent.SELECT_PUBLIC_KEYS" /> + <category android:name="android.intent.category.DEFAULT"/> + <data android:mimeType="text/*"/> + </intent-filter> + + </activity> <activity android:name=".SelectSecretKeyListActivity" android:label="@string/title_selectSignature" - android:configChanges="keyboardHidden|orientation|keyboard"/> + android:configChanges="keyboardHidden|orientation|keyboard"> + + <intent-filter> + <action android:name="org.thialfihar.android.apg.intent.SELECT_SECRET_KEY" /> + <category android:name="android.intent.category.DEFAULT"/> + <data android:mimeType="text/*"/> + </intent-filter> + + </activity> <activity android:name=".EncryptActivity" @@ -68,6 +84,9 @@ <intent-filter> <action android:name="org.thialfihar.android.apg.intent.ENCRYPT" /> <action android:name="org.thialfihar.android.apg.intent.ENCRYPT_FILE" /> + <action android:name="org.thialfihar.android.apg.intent.ENCRYPT_AND_RETURN" /> + <category android:name="android.intent.category.DEFAULT"/> + <data android:mimeType="text/*"/> </intent-filter> </activity> |