2011-12-20 19:20:44 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.thoughtcrime.securesms"
|
2011-12-21 07:40:02 +01:00
|
|
|
android:versionCode="21"
|
|
|
|
android:versionName="0.5.7">
|
2012-07-17 04:47:57 +02:00
|
|
|
|
|
|
|
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="14"/>
|
|
|
|
|
|
|
|
<application android:icon="@drawable/icon"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/Theme.Sherlock.Light.DarkActionBar">
|
|
|
|
|
2012-07-19 00:35:13 +02:00
|
|
|
<activity android:name=".ConversationListActivity"
|
2011-12-20 19:20:44 +01:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask"
|
2012-07-17 06:35:32 +02:00
|
|
|
android:uiOptions="splitActionBarWhenNarrow"
|
2011-12-20 19:20:44 +01:00
|
|
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"
|
|
|
|
>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2012-07-17 04:47:57 +02:00
|
|
|
<action android:name="android.intent.action.SENDTO"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:scheme="sms" />
|
|
|
|
<data android:scheme="smsto" />
|
|
|
|
</intent-filter>
|
2011-12-20 19:20:44 +01:00
|
|
|
</activity>
|
|
|
|
|
2012-07-20 02:02:31 +02:00
|
|
|
<activity android:name=".ConversationActivity"
|
2012-08-05 01:21:01 +02:00
|
|
|
android:windowSoftInputMode="stateUnchanged"
|
2012-07-20 02:02:31 +02:00
|
|
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"/>
|
|
|
|
|
2012-07-31 02:15:49 +02:00
|
|
|
<activity android:name=".PassphraseCreateActivity"
|
2012-07-31 23:18:14 +02:00
|
|
|
android:theme="@style/Theme.Sherlock.Light.Dialog"
|
2012-07-31 02:15:49 +02:00
|
|
|
android:label="Create Passphrase"
|
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"/>
|
|
|
|
|
2012-07-20 07:54:44 +02:00
|
|
|
<activity android:name=".PassphrasePromptActivity"
|
2012-07-31 23:18:14 +02:00
|
|
|
android:theme="@style/Theme.Sherlock.Light.Dialog"
|
2012-07-20 07:54:44 +02:00
|
|
|
android:label="Enter Passphrase"
|
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:windowSoftInputMode="stateVisible"
|
|
|
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"/>
|
|
|
|
|
2012-07-21 07:23:25 +02:00
|
|
|
<activity android:name=".ContactSelectionActivity"
|
|
|
|
android:label="Select Contacts"
|
|
|
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"/>
|
|
|
|
|
2012-07-23 22:42:29 +02:00
|
|
|
<activity android:name=".AutoInitiateActivity"
|
2012-07-31 23:18:14 +02:00
|
|
|
android:theme="@style/Theme.Sherlock.Light.Dialog"
|
2012-07-23 22:42:29 +02:00
|
|
|
android:label="TextSecure Messaging Detected"
|
|
|
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"/>
|
|
|
|
|
|
|
|
<activity android:name=".ViewIdentityActivity"
|
2012-07-31 23:18:14 +02:00
|
|
|
android:theme="@style/Theme.Sherlock.Light.Dialog"
|
2012-07-23 22:42:29 +02:00
|
|
|
android:label="Public Identity Key"
|
|
|
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"/>
|
|
|
|
|
|
|
|
<activity android:name=".PassphraseChangeActivity"
|
2012-07-31 23:18:14 +02:00
|
|
|
android:theme="@style/Theme.Sherlock.Light.Dialog"
|
2012-07-23 22:42:29 +02:00
|
|
|
android:label="Change Passphrase"
|
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"/>
|
|
|
|
|
|
|
|
<activity android:name=".VerifyKeysActivity"
|
|
|
|
android:label="Verify Session"
|
|
|
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"/>
|
|
|
|
|
|
|
|
<activity android:name=".VerifyIdentityActivity"
|
|
|
|
android:label="Verify Identity"
|
|
|
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"/>
|
|
|
|
|
|
|
|
<activity android:name=".SaveIdentityActivity"
|
2012-07-31 23:18:14 +02:00
|
|
|
android:theme="@style/Theme.Sherlock.Light.Dialog"
|
2012-07-23 22:42:29 +02:00
|
|
|
android:label="Save Identity"
|
|
|
|
android:windowSoftInputMode="stateVisible"
|
|
|
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"/>
|
2012-07-21 07:23:25 +02:00
|
|
|
|
2012-07-24 06:43:55 +02:00
|
|
|
<activity android:name=".ReviewIdentitiesActivity"
|
|
|
|
android:label="Manage Identity Keys"
|
|
|
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"/>
|
|
|
|
|
2012-07-17 04:47:57 +02:00
|
|
|
<activity android:name=".ApplicationPreferencesActivity" android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"></activity>
|
|
|
|
<activity android:name=".ReceiveKeyActivity" android:theme="@android:style/Theme.Dialog" android:label="Complete Key Exchange" android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"></activity>
|
|
|
|
<activity android:name=".VerifyImportedIdentityActivity" android:theme="@android:style/Theme.Dialog" android:label="Verify Imported Identity" android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout"></activity>
|
|
|
|
|
2012-08-03 05:23:41 +02:00
|
|
|
<service android:enabled="true" android:name=".service.ApplicationMigrationService"/>
|
|
|
|
<service android:enabled="true" android:name=".service.KeyCachingService"/>
|
|
|
|
<service android:enabled="true" android:name=".service.SendReceiveService"/>
|
2012-07-17 04:47:57 +02:00
|
|
|
|
2011-12-20 19:20:44 +01:00
|
|
|
<!-- <receiver android:name=".service.BootListener" -->
|
|
|
|
<!-- android:enabled="true" -->
|
|
|
|
<!-- android:exported="false">-->
|
|
|
|
<!-- <intent-filter>-->
|
|
|
|
<!-- <action android:name="android.intent.action.BOOT_COMPLETED" />-->
|
|
|
|
<!-- </intent-filter>-->
|
|
|
|
<!-- </receiver>-->
|
2012-07-17 04:47:57 +02:00
|
|
|
|
|
|
|
<receiver android:name=".service.SmsListener"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter android:priority="1001">
|
|
|
|
<action android:name="android.provider.Telephony.SMS_RECEIVED"></action>
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.thoughtcrime.securesms.services.MESSAGE_SENT"></action>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<receiver android:name=".service.MmsListener"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.BROADCAST_WAP_PUSH">
|
|
|
|
<intent-filter android:priority="1001">
|
|
|
|
<action android:name="android.provider.Telephony.WAP_PUSH_RECEIVED"></action>
|
|
|
|
<data android:mimeType="application/vnd.wap.mms-message" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<provider android:name=".providers.PartProvider" android:authorities="org.thoughtcrime.provider.securesms" />
|
|
|
|
|
2011-12-20 19:20:44 +01:00
|
|
|
<uses-library android:name="android.test.runner" />
|
|
|
|
</application>
|
|
|
|
|
|
|
|
<permission android:name="org.thoughtcrime.securesms.ACCESS_SECRETS"
|
2012-07-17 04:47:57 +02:00
|
|
|
android:label="Access to TextSecure Secrets"
|
|
|
|
android:protectionLevel="signature" />
|
2011-12-20 19:20:44 +01:00
|
|
|
|
|
|
|
<uses-permission android:name="org.thoughtcrime.securesms.ACCESS_SECRETS"></uses-permission>
|
|
|
|
<uses-permission android:name="android.permission.BROADCAST_WAP_PUSH"></uses-permission>
|
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_CONTACTS"></uses-permission>
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission>
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_MMS"></uses-permission>
|
|
|
|
<uses-permission android:name="android.permission.READ_SMS"></uses-permission>
|
|
|
|
<uses-permission android:name="android.permission.SEND_SMS"></uses-permission>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_SMS"></uses-permission>
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE"></uses-permission>
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
|
|
|
|
|
|
|
<instrumentation android:name="android.test.InstrumentationTestRunner"
|
|
|
|
android:targetPackage="org.thoughtcrime.securesms.tests" android:label="Tests for My App" />
|
|
|
|
|
2012-07-17 04:47:57 +02:00
|
|
|
</manifest>
|