aboutsummaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorThialfihar <thialfihar@gmail.com>2010-04-06 19:54:51 +0000
committerThialfihar <thialfihar@gmail.com>2010-04-06 19:54:51 +0000
commit42f1720bb32b5404ae9b78c0b042b143b6f507af (patch)
tree9fc2abf69b8e8d0a7268a044ca6dfa301bd4f252 /AndroidManifest.xml
parentaf9342a2cc06b070f1537f69d11d4f1d5a4578ce (diff)
downloadopen-keychain-42f1720bb32b5404ae9b78c0b042b143b6f507af.tar.gz
open-keychain-42f1720bb32b5404ae9b78c0b042b143b6f507af.tar.bz2
open-keychain-42f1720bb32b5404ae9b78c0b042b143b6f507af.zip
initial commit of v0.8.0
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml89
1 files changed, 89 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 000000000..5a41f262d
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,89 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 Thialfihar <thi@thialfihar.org>
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.thialfihar.android.apg"
+ android:versionCode="3" android:versionName="0.8.0">
+ <application android:icon="@drawable/icon" android:label="@string/app_name">
+ <activity android:name=".MainActivity"
+ android:label="@string/app_name"
+ android:configChanges="keyboardHidden|orientation|keyboard">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+
+ <activity android:name=".PublicKeyListActivity"
+ android:label="@string/title_managePublicKeys"
+ android:configChanges="keyboardHidden|orientation|keyboard">
+ </activity>
+
+ <activity android:name=".SecretKeyListActivity"
+ android:label="@string/title_manageSecretKeys"
+ android:configChanges="keyboardHidden|orientation|keyboard">
+ </activity>
+
+ <activity android:name=".EditKeyActivity"
+ android:label="@string/title_editKey"
+ android:configChanges="keyboardHidden|orientation|keyboard">
+ </activity>
+
+ <activity android:name=".SelectPublicKeyListActivity"
+ android:label="@string/title_selectRecipients"
+ android:configChanges="keyboardHidden|orientation|keyboard">
+ </activity>
+
+ <activity android:name=".SelectSecretKeyListActivity"
+ android:label="@string/title_selectSignature"
+ android:configChanges="keyboardHidden|orientation|keyboard">
+ </activity>
+
+ <activity android:name=".EncryptMessageActivity"
+ android:label="@string/title_encryptMessage"
+ android:configChanges="keyboardHidden|orientation|keyboard">
+ <intent-filter>
+ <action android:name="org.thialfihar.android.apg.intent.ENCRYPT" />
+ </intent-filter>
+ </activity>
+
+ <activity android:name=".DecryptMessageActivity"
+ android:label="@string/title_decryptMessage"
+ android:configChanges="keyboardHidden|orientation|keyboard">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.DEFAULT"/>
+ <data android:mimeType="text/*"/>
+ </intent-filter>
+ <intent-filter>
+ <action android:name="org.thialfihar.android.apg.intent.DECRYPT" />
+ </intent-filter>
+ </activity>
+
+ <activity android:name=".MailListActivity"
+ android:label="@string/title_mailInbox"
+ android:configChanges="keyboardHidden|orientation|keyboard">
+ </activity>
+
+ <provider android:name="org.thialfihar.android.apg.provider.DataProvider"
+ android:authorities="org.thialfihar.android.apg.provider" />
+
+ </application>
+ <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="5" />
+
+<uses-permission android:name="com.google.android.providers.gmail.permission.READ_GMAIL" />
+<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
+</manifest> \ No newline at end of file