aboutsummaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorThialfihar <thialfihar@gmail.com>2010-08-17 01:02:39 +0000
committerThialfihar <thialfihar@gmail.com>2010-08-17 01:02:39 +0000
commit6e9146c91ab9ec78837fa9ba7e21e2c01b72907f (patch)
tree16a80fcda66a9675956a6b007839f650dba363e1 /AndroidManifest.xml
parentb3a63beffcac99d3c80d706f10a0b7144e808fec (diff)
downloadopen-keychain-6e9146c91ab9ec78837fa9ba7e21e2c01b72907f.tar.gz
open-keychain-6e9146c91ab9ec78837fa9ba7e21e2c01b72907f.tar.bz2
open-keychain-6e9146c91ab9ec78837fa9ba7e21e2c01b72907f.zip
added initial support for HKP key servers, allowing searching and key import
Update issue 9 Can search a key server now, touch a result to import the key. Still needs better error handling and some Intents to import keys based on key ID. Also still need key server preferences.
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index a49148f98..25e824962 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -178,6 +178,11 @@
android:configChanges="keyboardHidden|orientation|keyboard"/>
<activity
+ android:name=".KeyServerQueryActivity"
+ android:label="@string/title_keyServerQuery"
+ android:configChanges="keyboardHidden|orientation|keyboard"/>
+
+ <activity
android:name=".PreferencesActivity"
android:label="@string/title_preferences"
android:configChanges="keyboardHidden|orientation|keyboard"/>
@@ -201,5 +206,6 @@
<uses-permission android:name="com.google.android.gm.permission.READ_GMAIL" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.fsck.k9.permission.READ_ATTACHMENT" />
+ <uses-permission android:name="android.permission.INTERNET"/>
</manifest>