2010-04-06 15:54:51 -04:00
<?xml version="1.0" encoding="utf-8"?>
2012-03-09 06:13:28 -05:00
<!-- 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. -->
2010-04-06 15:54:51 -04:00
2012-03-09 06:13:28 -05:00
<manifest xmlns:android= "http://schemas.android.com/apk/res/android"
android:installLocation="auto"
2012-03-09 10:27:29 -05:00
package="org.apg"
2012-03-09 06:13:28 -05:00
android:versionCode="11000"
android:versionName="1.1" >
<uses-sdk
2012-03-11 12:33:40 -04:00
android:minSdkVersion="4"
2012-03-09 06:13:28 -05:00
android:targetSdkVersion="14" />
2012-03-10 15:24:53 -05:00
<uses-permission android:name= "android.permission.INTERNET" />
<uses-permission android:name= "android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name= "com.fsck.k9.permission.READ_ATTACHMENT" />
2012-03-09 06:13:28 -05:00
<permission
2012-03-10 15:24:53 -05:00
android:name="org.apg.permission.READ_KEY_DETAILS"
2012-03-09 06:13:28 -05:00
android:description="@string/permission_read_key_details_description"
android:label="@string/permission_read_key_details_label"
android:protectionLevel="dangerous" />
<permission
2012-03-10 15:24:53 -05:00
android:name="org.apg.permission.STORE_BLOBS"
2012-03-09 06:13:28 -05:00
android:description="@string/permission_store_blobs_description"
android:label="@string/permission_store_blobs_label"
android:protectionLevel="dangerous" />
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
<application
2012-03-11 11:33:47 -04:00
android:hardwareAccelerated="true"
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
android:icon="@drawable/icon"
2012-03-11 12:33:40 -04:00
android:label="@string/app_name"
2012-03-11 19:12:19 -04:00
android:theme="@style/Theme.Sherlock.Light.ForceOverflow" >
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.MainActivity"
2012-03-09 06:13:28 -05:00
android:configChanges="keyboardHidden|orientation|keyboard"
android:label="@string/app_name" >
2010-04-06 15:54:51 -04:00
<intent-filter >
<action android:name= "android.intent.action.MAIN" />
2012-03-09 06:13:28 -05:00
2010-04-06 15:54:51 -04:00
<category android:name= "android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.PublicKeyListActivity"
2010-06-05 17:47:16 -04:00
android:configChanges="keyboardHidden|orientation|keyboard"
2012-03-09 06:13:28 -05:00
android:label="@string/title_managePublicKeys"
2012-03-11 19:12:19 -04:00
android:launchMode="singleTop"
android:uiOptions="splitActionBarWhenNarrow" >
2010-06-05 17:47:16 -04:00
<intent-filter >
<action android:name= "android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
2012-03-09 06:13:28 -05:00
android:resource="@xml/searchable_public_keys" />
2010-06-05 17:47:16 -04:00
</activity>
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.SecretKeyListActivity"
2010-06-05 17:47:16 -04:00
android:configChanges="keyboardHidden|orientation|keyboard"
2012-03-09 06:13:28 -05:00
android:label="@string/title_manageSecretKeys"
2012-03-11 19:12:19 -04:00
android:launchMode="singleTop"
android:uiOptions="splitActionBarWhenNarrow" >
2010-06-05 17:47:16 -04:00
<intent-filter >
<action android:name= "android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
2012-03-09 06:13:28 -05:00
android:resource="@xml/searchable_secret_keys" />
2010-06-05 17:47:16 -04:00
</activity>
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.EditKeyActivity"
2012-03-09 06:13:28 -05:00
android:configChanges="keyboardHidden|orientation|keyboard"
2012-03-11 20:58:24 -04:00
android:label="@string/title_editKey"
android:uiOptions="splitActionBarWhenNarrow" />
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.SelectPublicKeyListActivity"
2010-06-05 17:47:16 -04:00
android:configChanges="keyboardHidden|orientation|keyboard"
2012-03-09 06:13:28 -05:00
android:label="@string/title_selectRecipients"
android:launchMode="singleTop" >
2010-05-31 23:20:13 -04:00
<intent-filter >
2012-03-10 15:24:53 -05:00
<action android:name= "org.apg.intent.SELECT_PUBLIC_KEYS" />
2010-05-31 23:20:13 -04:00
2012-03-09 06:13:28 -05:00
<category android:name= "android.intent.category.DEFAULT" />
</intent-filter>
2010-06-05 17:47:16 -04:00
<intent-filter >
<action android:name= "android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
2012-03-09 06:13:28 -05:00
android:resource="@xml/searchable_public_keys" />
2010-05-31 23:20:13 -04:00
</activity>
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.SelectSecretKeyListActivity"
2010-06-05 17:47:16 -04:00
android:configChanges="keyboardHidden|orientation|keyboard"
2012-03-09 06:13:28 -05:00
android:label="@string/title_selectSignature"
android:launchMode="singleTop" >
2010-05-31 23:20:13 -04:00
<intent-filter >
2012-03-10 15:24:53 -05:00
<action android:name= "org.apg.intent.SELECT_SECRET_KEY" />
2010-05-31 23:20:13 -04:00
2012-03-09 06:13:28 -05:00
<category android:name= "android.intent.category.DEFAULT" />
</intent-filter>
2010-06-05 17:47:16 -04:00
<intent-filter >
<action android:name= "android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
2012-03-09 06:13:28 -05:00
android:resource="@xml/searchable_secret_keys" />
2010-05-31 23:20:13 -04:00
</activity>
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.EncryptActivity"
2012-03-09 06:13:28 -05:00
android:configChanges="keyboardHidden|orientation|keyboard"
2012-03-11 19:12:19 -04:00
android:label="@string/title_encrypt"
android:uiOptions="splitActionBarWhenNarrow" >
2010-04-06 15:54:51 -04:00
<intent-filter >
2012-03-10 15:24:53 -05:00
<action android:name= "org.apg.intent.ENCRYPT" />
<action android:name= "org.apg.intent.ENCRYPT_FILE" />
<action android:name= "org.apg.intent.ENCRYPT_AND_RETURN" />
<action android:name= "org.apg.intent.GENERATE_SIGNATURE" />
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
2012-03-09 06:13:28 -05:00
<category android:name= "android.intent.category.DEFAULT" />
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
2012-03-09 06:13:28 -05:00
<data android:mimeType= "*/*" />
</intent-filter>
</activity>
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.DecryptActivity"
2012-03-09 06:13:28 -05:00
android:configChanges="keyboardHidden|orientation|keyboard"
2012-03-11 19:12:19 -04:00
android:label="@string/title_decrypt"
android:uiOptions="splitActionBarWhenNarrow" >
2010-04-06 15:54:51 -04:00
<intent-filter >
2012-03-10 15:24:53 -05:00
<action android:name= "org.apg.intent.DECRYPT" />
<action android:name= "org.apg.intent.DECRYPT_FILE" />
<action android:name= "org.apg.intent.DECRYPT_AND_RETURN" />
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
2012-03-09 06:13:28 -05:00
<category android:name= "android.intent.category.DEFAULT" />
2010-06-05 13:54:40 -04:00
2012-03-09 06:13:28 -05:00
<data android:mimeType= "*/*" />
</intent-filter>
</activity>
2010-06-05 13:54:40 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.GeneralActivity"
2010-06-05 13:54:40 -04:00
android:configChanges="keyboardHidden|orientation|keyboard"
2012-03-09 06:13:28 -05:00
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog" >
2010-04-06 15:54:51 -04:00
<intent-filter >
2010-06-05 13:54:40 -04:00
<action android:name= "android.intent.action.VIEW" />
<action android:name= "android.intent.action.SEND" />
2010-06-06 15:46:49 -04:00
2012-03-09 06:13:28 -05:00
<category android:name= "android.intent.category.DEFAULT" />
<data
android:mimeType="*/*"
android:scheme="file" />
</intent-filter>
2010-06-06 15:46:49 -04:00
<intent-filter >
<action android:name= "android.intent.action.VIEW" />
<action android:name= "android.intent.action.SEND" />
2012-03-09 06:13:28 -05:00
<category android:name= "android.intent.category.DEFAULT" />
</intent-filter>
2010-06-06 16:34:44 -04:00
<intent-filter >
<action android:name= "android.intent.action.VIEW" />
<action android:name= "android.intent.action.SEND" />
2012-03-09 06:13:28 -05:00
<category android:name= "android.intent.category.DEFAULT" />
2010-04-22 11:30:19 -04:00
2012-03-09 06:13:28 -05:00
<data
android:mimeType="text/*"
android:scheme="" />
</intent-filter>
</activity>
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.MailListActivity"
2012-03-09 06:13:28 -05:00
android:configChanges="keyboardHidden|orientation|keyboard"
android:label="@string/title_mailInbox" />
2010-08-16 21:02:39 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.KeyServerQueryActivity"
2012-03-09 06:13:28 -05:00
android:configChanges="keyboardHidden|orientation|keyboard"
android:label="@string/title_keyServerQuery" />
2011-10-16 21:07:37 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.SendKeyActivity"
2012-03-09 06:13:28 -05:00
android:configChanges="keyboardHidden|orientation|keyboard"
android:label="@string/title_sendKey" />
2010-04-28 19:35:11 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.PreferencesActivity"
2012-03-09 06:13:28 -05:00
android:configChanges="keyboardHidden|orientation|keyboard"
android:label="@string/title_preferences" />
2010-08-17 17:49:34 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.KeyServerPreferenceActivity"
2012-03-09 06:13:28 -05:00
android:configChanges="keyboardHidden|orientation|keyboard"
android:label="@string/title_keyServerPreference" />
2011-10-16 21:07:37 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.SignKeyActivity"
2012-03-09 06:13:28 -05:00
android:configChanges="keyboardHidden|orientation|keyboard"
android:label="@string/title_signKey" />
2011-10-16 21:07:37 -04:00
<activity
2012-03-09 10:27:29 -05:00
android:name=".ui.ImportFromQRCodeActivity"
2012-03-09 06:13:28 -05:00
android:configChanges="keyboardHidden|orientation|keyboard"
android:label="@string/title_importFromQRCode" />
2012-03-09 12:43:10 -05:00
<activity
android:name=".ui.AboutActivity"
android:excludeFromRecents="true"
android:label="@string/title_about"
2012-03-11 19:12:19 -04:00
android:theme="@style/Theme.Sherlock.Light.Dialog" />
2011-10-16 21:07:37 -04:00
2010-06-03 12:17:55 -04:00
<service android:name= ".Service" />
2011-01-23 16:36:20 -05:00
<service
android:name=".ApgService"
2012-03-09 06:13:28 -05:00
android:enabled="true"
android:exported="true"
2012-03-10 15:24:53 -05:00
android:permission="org.apg.permission.READ_KEY_DETAILS"
2012-03-09 06:13:28 -05:00
android:process=":remote" >
2010-12-29 11:31:58 -05:00
<intent-filter >
2012-03-10 15:24:53 -05:00
<action android:name= "org.apg.IApgService" />
2010-12-29 11:31:58 -05:00
</intent-filter>
2012-03-09 06:13:28 -05:00
<meta-data
android:name="api_version"
android:value="2" />
</service>
2010-06-02 10:01:18 -04:00
<provider
2012-03-09 10:27:29 -05:00
android:name=".provider.DataProvider"
2012-03-10 15:24:53 -05:00
android:authorities="org.apg.provider"
android:readPermission="org.apg.permission.READ_KEY_DETAILS" />
2011-11-04 16:22:49 -04:00
<provider
2012-03-09 10:27:29 -05:00
android:name=".provider.ApgServiceBlobProvider"
2012-03-10 15:24:53 -05:00
android:authorities="org.apg.provider.apgserviceblobprovider"
android:permission="org.apg.permission.STORE_BLOBS" />
2010-04-06 15:54:51 -04:00
</application>
2010-06-02 10:01:18 -04:00
2012-03-09 06:13:28 -05:00
</manifest>