2010-04-06 15:54:51 -04:00
|
|
|
<?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.
|
|
|
|
-->
|
|
|
|
|
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
|
|
|
<manifest
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.thialfihar.android.apg"
|
2010-12-25 17:20:34 -05:00
|
|
|
android:versionCode="10900" android:versionName="1.0.9 beta 00"
|
2010-08-18 09:27:54 -04:00
|
|
|
android:installLocation="auto">
|
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
|
|
|
|
android:icon="@drawable/icon"
|
|
|
|
android:label="@string/app_name">
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:configChanges="keyboardHidden|orientation|keyboard">
|
|
|
|
|
2010-04-06 15:54:51 -04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<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
|
|
|
|
android:name=".PublicKeyListActivity"
|
|
|
|
android:label="@string/title_managePublicKeys"
|
2010-06-05 17:47:16 -04:00
|
|
|
android:configChanges="keyboardHidden|orientation|keyboard"
|
|
|
|
android:launchMode="singleTop">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.searchable"
|
|
|
|
android:resource="@xml/searchable_public_keys"/>
|
|
|
|
|
|
|
|
</activity>
|
2010-04-06 15:54:51 -04:00
|
|
|
|
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
|
|
|
|
android:name=".SecretKeyListActivity"
|
|
|
|
android:label="@string/title_manageSecretKeys"
|
2010-06-05 17:47:16 -04:00
|
|
|
android:configChanges="keyboardHidden|orientation|keyboard"
|
|
|
|
android:launchMode="singleTop">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.searchable"
|
|
|
|
android:resource="@xml/searchable_secret_keys"/>
|
|
|
|
|
|
|
|
</activity>
|
2010-04-06 15:54:51 -04:00
|
|
|
|
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
|
|
|
|
android:name=".EditKeyActivity"
|
|
|
|
android:label="@string/title_editKey"
|
|
|
|
android:configChanges="keyboardHidden|orientation|keyboard"/>
|
2010-04-06 15:54:51 -04:00
|
|
|
|
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
|
|
|
|
android:name=".SelectPublicKeyListActivity"
|
|
|
|
android:label="@string/title_selectRecipients"
|
2010-06-05 17:47:16 -04:00
|
|
|
android:configChanges="keyboardHidden|orientation|keyboard"
|
|
|
|
android:launchMode="singleTop">
|
2010-05-31 23:20:13 -04:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.thialfihar.android.apg.intent.SELECT_PUBLIC_KEYS" />
|
|
|
|
<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"
|
|
|
|
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
|
|
|
|
android:name=".SelectSecretKeyListActivity"
|
|
|
|
android:label="@string/title_selectSignature"
|
2010-06-05 17:47:16 -04:00
|
|
|
android:configChanges="keyboardHidden|orientation|keyboard"
|
|
|
|
android:launchMode="singleTop">
|
2010-05-31 23:20:13 -04:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.thialfihar.android.apg.intent.SELECT_SECRET_KEY" />
|
|
|
|
<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"
|
|
|
|
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
|
2010-05-09 15:51:21 -04:00
|
|
|
android:name=".EncryptActivity"
|
|
|
|
android:label="@string/title_encrypt"
|
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:configChanges="keyboardHidden|orientation|keyboard">
|
2010-04-06 15:54:51 -04:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.thialfihar.android.apg.intent.ENCRYPT" />
|
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
|
|
|
<action android:name="org.thialfihar.android.apg.intent.ENCRYPT_FILE" />
|
2010-05-31 23:20:13 -04:00
|
|
|
<action android:name="org.thialfihar.android.apg.intent.ENCRYPT_AND_RETURN" />
|
2010-12-25 09:00:25 -05:00
|
|
|
<action android:name="org.thialfihar.android.apg.intent.GENERATE_SIGNATURE" />
|
2010-05-31 23:20:13 -04:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2010-06-05 20:35:00 -04:00
|
|
|
<data android:mimeType="*/*"/>
|
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
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity
|
2010-05-11 10:07:15 -04:00
|
|
|
android:name=".DecryptActivity"
|
|
|
|
android:label="@string/title_decrypt"
|
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:configChanges="keyboardHidden|orientation|keyboard">
|
|
|
|
|
2010-04-06 15:54:51 -04:00
|
|
|
<intent-filter>
|
2010-06-05 13:54:40 -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" />
|
2010-04-06 15:54:51 -04:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2010-06-05 20:35:00 -04:00
|
|
|
<data android:mimeType="*/*"/>
|
2010-04-06 15:54:51 -04:00
|
|
|
</intent-filter>
|
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
|
|
|
|
2010-06-05 13:54:40 -04:00
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".GeneralActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:configChanges="keyboardHidden|orientation|keyboard"
|
|
|
|
android:theme="@android:style/Theme.Dialog">
|
2010-05-18 11:02:57 -04:00
|
|
|
|
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-05-31 19:15:20 -04:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2010-06-06 15:46:49 -04:00
|
|
|
<data android:mimeType="*/*" android:scheme="file"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2010-04-22 11:30:19 -04:00
|
|
|
</intent-filter>
|
2010-06-06 15:46:49 -04:00
|
|
|
|
2010-06-06 16:34:44 -04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="text/*" android:scheme=""/>
|
|
|
|
</intent-filter>
|
|
|
|
|
2010-04-22 11:30:19 -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
|
|
|
|
android:name=".MailListActivity"
|
|
|
|
android:label="@string/title_mailInbox"
|
|
|
|
android:configChanges="keyboardHidden|orientation|keyboard"/>
|
|
|
|
|
2010-08-16 21:02:39 -04:00
|
|
|
<activity
|
|
|
|
android:name=".KeyServerQueryActivity"
|
|
|
|
android:label="@string/title_keyServerQuery"
|
|
|
|
android:configChanges="keyboardHidden|orientation|keyboard"/>
|
|
|
|
|
2010-04-28 19:35:11 -04:00
|
|
|
<activity
|
|
|
|
android:name=".PreferencesActivity"
|
|
|
|
android:label="@string/title_preferences"
|
|
|
|
android:configChanges="keyboardHidden|orientation|keyboard"/>
|
|
|
|
|
2010-08-17 17:49:34 -04:00
|
|
|
<activity
|
|
|
|
android:name=".KeyServerPreferenceActivity"
|
|
|
|
android:label="@string/title_keyServerPreference"
|
|
|
|
android:configChanges="keyboardHidden|orientation|keyboard"/>
|
|
|
|
|
2010-06-03 12:17:55 -04:00
|
|
|
<service android:name=".Service" />
|
|
|
|
|
2010-06-02 10:01:18 -04:00
|
|
|
<provider
|
|
|
|
android:readPermission="org.thialfihar.android.apg.permission.READ_KEY_DETAILS"
|
|
|
|
android:name="org.thialfihar.android.apg.provider.DataProvider"
|
|
|
|
android:authorities="org.thialfihar.android.apg.provider"/>
|
|
|
|
|
2010-04-06 15:54:51 -04:00
|
|
|
</application>
|
2010-05-11 13:26:12 -04:00
|
|
|
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="5" />
|
2010-04-06 15:54:51 -04:00
|
|
|
|
2010-06-02 10:01:18 -04:00
|
|
|
<permission android:name="org.thialfihar.android.apg.permission.READ_KEY_DETAILS"
|
|
|
|
android:protectionLevel="dangerous"
|
|
|
|
android:label="@string/permission_read_key_details_label"
|
|
|
|
android:description="@string/permission_read_key_details_description"/>
|
|
|
|
|
|
|
|
<uses-permission android:name="com.google.android.providers.gmail.permission.READ_GMAIL" />
|
2010-08-05 07:25:44 -04:00
|
|
|
<uses-permission android:name="com.google.android.gm.permission.READ_GMAIL" />
|
2010-06-02 10:01:18 -04:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2010-07-05 09:22:03 -04:00
|
|
|
<uses-permission android:name="com.fsck.k9.permission.READ_ATTACHMENT" />
|
2010-08-16 21:02:39 -04:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2010-06-02 10:01:18 -04:00
|
|
|
|
|
|
|
</manifest>
|