2010-04-06 15:54:51 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2012-03-09 06:13:28 -05:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-04-14 10:18:06 -04:00
|
|
|
package="org.thialfihar.android.apg"
|
2012-04-11 13:29:27 -04:00
|
|
|
android:installLocation="auto"
|
2012-03-22 15:38:50 -04:00
|
|
|
android:versionCode="50"
|
2012-04-14 10:18:06 -04:00
|
|
|
android:versionName="2.0" >
|
2012-03-09 06:13:28 -05:00
|
|
|
|
2012-04-14 10:18:06 -04:00
|
|
|
<!-- APG 2 starting with versionCode 50! -->
|
2012-03-22 15:38:50 -04:00
|
|
|
|
2012-03-09 06:13:28 -05:00
|
|
|
<uses-sdk
|
2012-04-11 14:00:00 -04:00
|
|
|
android:minSdkVersion="7"
|
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-04-14 10:18:06 -04:00
|
|
|
android:name="org.thialfihar.android.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-04-14 10:18:06 -04:00
|
|
|
android:name="org.thialfihar.android.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-06-08 20:46:30 -04:00
|
|
|
android:theme="@style/Theme.Sherlock.Light.ForceOverflow" android:name="ApgApplication">
|
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"
|
2012-04-12 13:44:00 -04:00
|
|
|
android:uiOptions="splitActionBarWhenNarrow"
|
|
|
|
android:windowSoftInputMode="stateHidden" >
|
2012-04-12 09:23:00 -04:00
|
|
|
<intent-filter>
|
2012-04-14 10:18:06 -04:00
|
|
|
<action android:name="org.thialfihar.android.apg.intent.CREATE_KEY" />
|
|
|
|
<action android:name="org.thialfihar.android.apg.intent.EDIT_KEY" />
|
2012-04-12 09:23:00 -04:00
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</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.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"
|
2012-04-11 13:29:27 -04:00
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:uiOptions="splitActionBarWhenNarrow" >
|
2010-05-31 23:20:13 -04:00
|
|
|
<intent-filter>
|
2012-04-14 10:18:06 -04:00
|
|
|
<action android:name="org.thialfihar.android.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-04-14 10:18:06 -04:00
|
|
|
<action android:name="org.thialfihar.android.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"
|
2012-04-12 20:34:46 -04:00
|
|
|
android:uiOptions="splitActionBarWhenNarrow"
|
|
|
|
android:windowSoftInputMode="stateHidden" >
|
2010-04-06 15:54:51 -04:00
|
|
|
<intent-filter>
|
2012-04-14 10:18:06 -04:00
|
|
|
<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" />
|
|
|
|
<action android:name="org.thialfihar.android.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"
|
2012-04-12 20:34:46 -04:00
|
|
|
android:uiOptions="splitActionBarWhenNarrow"
|
|
|
|
android:windowSoftInputMode="stateHidden" >
|
2010-04-06 15:54:51 -04:00
|
|
|
<intent-filter>
|
2012-04-14 10:18:06 -04:00
|
|
|
<action android:name="org.thialfihar.android.apg.intent.DECRYPT" />
|
|
|
|
<action android:name="org.thialfihar.android.apg.intent.DECRYPT_FILE" />
|
|
|
|
<action android:name="org.thialfihar.android.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-12 09:28:35 -04:00
|
|
|
android:name=".ui.KeyServerExportActivity"
|
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" />
|
2012-03-12 10:10:26 -04:00
|
|
|
<activity
|
2012-06-08 20:46:30 -04:00
|
|
|
android:name=".ui.HelpActivity"
|
2012-03-12 10:10:26 -04:00
|
|
|
android:label="@string/title_help" />
|
2011-10-16 21:07:37 -04:00
|
|
|
|
2012-06-08 20:46:30 -04:00
|
|
|
<service android:name=".service.password.PassphraseCacheService" />
|
2012-04-20 06:12:07 -04:00
|
|
|
<service android:name=".service.ApgService" />
|
2012-04-25 12:59:51 -04:00
|
|
|
|
|
|
|
<!-- TODO: need to be moved into new service model -->
|
|
|
|
<service
|
|
|
|
android:name=".service.ApgService2"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="org.thialfihar.android.apg.permission.READ_KEY_DETAILS"
|
|
|
|
android:process=":remote" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.thialfihar.android.apg.service.IApgService2" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="api_version"
|
|
|
|
android:value="2" />
|
|
|
|
</service>
|
2012-03-09 06:13:28 -05:00
|
|
|
|
2010-06-02 10:01:18 -04:00
|
|
|
<provider
|
2012-03-09 10:27:29 -05:00
|
|
|
android:name=".provider.DataProvider"
|
2012-04-14 10:18:06 -04:00
|
|
|
android:authorities="org.thialfihar.android.apg.provider"
|
|
|
|
android:readPermission="org.thialfihar.android.apg.permission.READ_KEY_DETAILS" />
|
2011-11-04 16:22:49 -04:00
|
|
|
<provider
|
2012-06-08 20:46:30 -04:00
|
|
|
android:name=".provider.blob.ApgServiceBlobProvider"
|
2012-04-14 10:18:06 -04:00
|
|
|
android:authorities="org.thialfihar.android.apg.provider.apgserviceblobprovider"
|
|
|
|
android:permission="org.thialfihar.android.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>
|