2014-10-22 18:38:44 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-08-25 22:41:33 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-01-25 17:58:23 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="eu.siacs.conversations">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
|
|
<uses-permission android:name="android.permission.READ_PROFILE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2018-03-11 19:09:35 +01:00
|
|
|
|
2018-05-01 12:55:11 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:required="false" />
|
2018-05-01 12:55:11 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location.gps"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:required="false" />
|
2018-05-01 12:55:11 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location.network"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:required="false" />
|
2015-10-20 15:27:33 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
2018-02-25 23:58:56 +01:00
|
|
|
|
2015-10-20 15:27:33 +02:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.READ_PHONE_STATE"
|
2019-01-25 17:58:23 +01:00
|
|
|
tools:node="remove" />
|
2015-08-23 12:39:20 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<uses-sdk tools:overrideLibrary="net.ypresto.androidtranscoder" />
|
2017-01-24 20:17:36 +01:00
|
|
|
|
2018-05-01 12:55:11 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:required="false" />
|
2018-05-01 12:55:11 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera.autofocus"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:required="false" />
|
2018-03-14 08:21:49 +01:00
|
|
|
|
2018-05-03 17:01:16 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.microphone"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:required="false" />
|
2018-05-03 17:01:16 +02:00
|
|
|
|
2017-03-05 11:42:29 +01:00
|
|
|
|
2014-10-22 18:38:44 +02:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2018-05-01 12:55:11 +02:00
|
|
|
android:appCategory="social"
|
2018-09-05 22:24:58 +02:00
|
|
|
android:icon="@mipmap/new_launcher"
|
2014-10-22 18:38:44 +02:00
|
|
|
android:label="@string/app_name"
|
2018-05-01 12:55:11 +02:00
|
|
|
android:networkSecurityConfig="@xml/network_security_configuration"
|
2014-11-03 20:00:20 +01:00
|
|
|
android:theme="@style/ConversationsTheme"
|
2018-03-14 04:01:28 +01:00
|
|
|
tools:replace="android:label"
|
|
|
|
tools:targetApi="o">
|
2017-04-14 13:23:01 +02:00
|
|
|
|
2018-05-01 12:55:11 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.gms.car.application"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:resource="@xml/automotive_app_desc" />
|
2017-04-14 13:23:01 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<service android:name=".services.XmppConnectionService" />
|
2014-10-22 18:38:44 +02:00
|
|
|
|
2015-10-20 15:27:33 +02:00
|
|
|
<receiver android:name=".services.EventReceiver">
|
2014-10-22 18:38:44 +02:00
|
|
|
<intent-filter>
|
2019-01-25 17:58:23 +01:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
|
|
<action android:name="android.intent.action.ACTION_SHUTDOWN" />
|
|
|
|
<action android:name="android.media.RINGER_MODE_CHANGED" />
|
2014-10-22 18:38:44 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2018-05-01 12:55:11 +02:00
|
|
|
|
2018-03-11 19:09:35 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ShareLocationActivity"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:label="@string/title_activity_share_location" />
|
2018-04-25 20:25:28 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ui.SearchActivity"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:label="@string/search_messages" />
|
2018-04-22 20:31:37 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ui.RecordingActivity"
|
2018-05-01 12:55:11 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:theme="@style/ConversationsTheme.Dialog" />
|
2018-03-11 19:09:35 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ShowLocationActivity"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:label="@string/title_activity_show_location" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2018-02-22 22:23:49 +01:00
|
|
|
android:name=".ui.ConversationActivity"
|
2018-03-07 19:05:28 +01:00
|
|
|
android:theme="@style/SplashTheme">
|
2014-10-22 18:38:44 +02:00
|
|
|
<intent-filter>
|
2019-01-25 17:58:23 +01:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2014-10-22 18:38:44 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2014-10-22 18:38:44 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2018-03-07 19:05:28 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ConversationsActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask"
|
2018-05-01 12:55:11 +02:00
|
|
|
android:minWidth="300dp"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:minHeight="300dp"
|
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2018-02-25 23:58:56 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ScanActivity"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:theme="@style/ConversationsTheme.FullScreen"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2017-12-07 21:59:13 +01:00
|
|
|
android:name=".ui.UriHandlerActivity"
|
2018-10-24 13:54:42 +02:00
|
|
|
android:label="@string/app_name">
|
2014-10-22 18:38:44 +02:00
|
|
|
<intent-filter>
|
2019-01-25 17:58:23 +01:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2014-10-22 18:38:44 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2014-10-22 18:38:44 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<data android:scheme="xmpp" />
|
2014-10-22 18:38:44 +02:00
|
|
|
</intent-filter>
|
2016-05-29 20:44:58 +02:00
|
|
|
<intent-filter android:autoVerify="true">
|
2019-01-25 17:58:23 +01:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2016-08-25 22:41:33 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2016-08-25 22:41:33 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:host="conversations.im" />
|
|
|
|
<data android:pathPrefix="/i/" />
|
|
|
|
<data android:pathPrefix="/j/" />
|
2016-05-29 20:44:58 +02:00
|
|
|
</intent-filter>
|
2017-12-07 21:59:13 +01:00
|
|
|
<intent-filter>
|
2019-01-25 17:58:23 +01:00
|
|
|
<action android:name="android.intent.action.SENDTO" />
|
2016-05-29 20:44:58 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2017-12-07 21:59:13 +01:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<data android:scheme="imto" />
|
|
|
|
<data android:host="jabber" />
|
2017-12-07 21:59:13 +01:00
|
|
|
</intent-filter>
|
2017-12-10 12:36:21 +01:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".ui.StartConversationActivity"
|
|
|
|
android:label="@string/title_activity_start_conversation"
|
|
|
|
android:launchMode="singleTop">
|
2018-04-04 09:33:07 +02:00
|
|
|
<intent-filter>
|
2019-01-25 17:58:23 +01:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2018-04-04 09:33:07 +02:00
|
|
|
</intent-filter>
|
2014-10-22 18:38:44 +02:00
|
|
|
</activity>
|
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.SettingsActivity"
|
2018-09-06 15:37:15 +02:00
|
|
|
android:label="@string/title_activity_settings">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.NOTIFICATION_PREFERENCES" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.ChooseContactActivity"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:label="@string/title_activity_choose_contact" />
|
2014-12-21 21:43:58 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.BlocklistActivity"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:label="@string/title_activity_block_list" />
|
2015-10-20 15:27:33 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ChangePasswordActivity"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:label="@string/change_password_on_server" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.ChooseAccountForProfilePictureActivity"
|
|
|
|
android:enabled="false"
|
|
|
|
android:label="@string/choose_account">
|
2019-01-13 15:28:24 +01:00
|
|
|
<intent-filter android:label="@string/set_profile_picture">
|
2019-01-25 17:58:23 +01:00
|
|
|
<action android:name="android.intent.action.ATTACH_DATA" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-01-13 15:28:24 +01:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<data android:mimeType="image/*" />
|
2019-01-13 15:28:24 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-12-07 16:45:20 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ShareViaAccountActivity"
|
|
|
|
android:label="@string/title_activity_share_via_account"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:launchMode="singleTop" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.EditAccountActivity"
|
2017-11-06 12:18:24 +01:00
|
|
|
android:launchMode="singleTop"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.ConferenceDetailsActivity"
|
2018-06-18 14:15:19 +02:00
|
|
|
android:label="@string/action_muc_details"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.ContactDetailsActivity"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.PublishProfilePictureActivity"
|
2014-10-22 18:38:44 +02:00
|
|
|
android:label="@string/mgmt_account_publish_avatar"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2018-06-18 14:15:19 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ui.PublishGroupChatProfilePictureActivity"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:label="@string/group_chat_avatar" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.ShareWithActivity"
|
2017-11-06 12:18:24 +01:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTop">
|
2019-01-11 17:45:18 +01:00
|
|
|
|
|
|
|
<intent-filter>
|
2019-01-25 17:58:23 +01:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
2019-01-11 17:45:18 +01:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-01-11 17:45:18 +01:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<data android:mimeType="text/plain" />
|
2019-01-11 17:45:18 +01:00
|
|
|
</intent-filter>
|
|
|
|
|
2014-10-22 18:38:44 +02:00
|
|
|
<intent-filter>
|
2019-01-25 17:58:23 +01:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
2015-04-11 14:53:10 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2015-04-11 14:53:10 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<data android:mimeType="*/*" />
|
2015-04-11 14:53:10 +02:00
|
|
|
</intent-filter>
|
2016-08-25 22:41:33 +02:00
|
|
|
|
2015-12-06 11:55:37 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.service.chooser.chooser_target_service"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:value=".services.ContactChooserTargetService" />
|
2014-10-22 18:38:44 +02:00
|
|
|
</activity>
|
2015-07-19 18:36:28 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ui.TrustKeysActivity"
|
2015-08-08 13:29:21 +02:00
|
|
|
android:label="@string/trust_omemo_fingerprints"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2014-11-04 18:08:30 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.AboutActivity"
|
2015-10-20 15:27:33 +02:00
|
|
|
android:parentActivityName=".ui.SettingsActivity">
|
2014-11-04 18:08:30 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:value="eu.siacs.conversations.ui.SettingsActivity" />
|
2018-02-16 19:49:14 +01:00
|
|
|
<intent-filter>
|
2019-01-25 17:58:23 +01:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.PREFERENCE" />
|
2018-02-16 19:49:14 +01:00
|
|
|
</intent-filter>
|
2014-11-04 18:08:30 +01:00
|
|
|
</activity>
|
2019-01-25 17:58:23 +01:00
|
|
|
<activity
|
|
|
|
android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
|
|
|
|
android:theme="@style/Base.Theme.AppCompat" />
|
|
|
|
<activity android:name=".ui.MemorizingActivity" />
|
2016-08-25 22:41:33 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.MediaBrowserActivity"
|
|
|
|
android:label="@string/media_browser" />
|
2018-09-15 21:10:17 +02:00
|
|
|
|
2019-01-25 17:58:23 +01:00
|
|
|
<service android:name=".services.ExportBackupService" />
|
|
|
|
<service android:name=".services.ImportBackupService" />
|
2016-08-25 22:41:33 +02:00
|
|
|
<service
|
|
|
|
android:name=".services.ContactChooserTargetService"
|
|
|
|
android:permission="android.permission.BIND_CHOOSER_TARGET_SERVICE">
|
2015-12-06 11:55:37 +01:00
|
|
|
<intent-filter>
|
2019-01-25 17:58:23 +01:00
|
|
|
<action android:name="android.service.chooser.ChooserTargetService" />
|
2015-12-06 11:55:37 +01:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2016-08-25 22:41:33 +02:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
2016-12-01 12:09:49 +01:00
|
|
|
android:authorities="${applicationId}.files"
|
2016-08-25 22:41:33 +02:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:resource="@xml/file_paths" />
|
2016-08-25 22:41:33 +02:00
|
|
|
</provider>
|
2016-11-22 22:31:46 +01:00
|
|
|
<provider
|
|
|
|
android:name=".services.BarcodeProvider"
|
2018-05-01 12:55:11 +02:00
|
|
|
android:authorities="${applicationId}.barcodes"
|
2016-11-22 22:31:46 +01:00
|
|
|
android:exported="false"
|
2019-01-25 17:58:23 +01:00
|
|
|
android:grantUriPermissions="true" />
|
2016-08-25 22:41:33 +02:00
|
|
|
|
2018-05-01 12:55:11 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ShortcutActivity"
|
2018-04-04 09:33:07 +02:00
|
|
|
android:label="@string/contact">
|
|
|
|
<intent-filter>
|
2019-01-25 17:58:23 +01:00
|
|
|
<action android:name="android.intent.action.CREATE_SHORTCUT" />
|
2018-04-04 09:33:07 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-01-25 17:58:23 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.MucUsersActivity"
|
|
|
|
android:label="@string/group_chat_members" />
|
2014-10-22 18:38:44 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|