2014-10-22 16:38:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-08-25 20:41:33 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-01-25 16:58:23 +00: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" />
|
2020-11-13 11:24:42 +00:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.READ_PHONE_STATE"
|
|
|
|
android:maxSdkVersion="22" />
|
2019-01-25 16:58:23 +00:00
|
|
|
<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" />
|
2019-12-22 17:19:02 +00:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2018-03-11 18:09:35 +00:00
|
|
|
|
2018-05-01 10:55:11 +00:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:required="false" />
|
2018-05-01 10:55:11 +00:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location.gps"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:required="false" />
|
2018-05-01 10:55:11 +00:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location.network"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:required="false" />
|
2015-10-20 13:27:33 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
2020-04-13 10:02:34 +00:00
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
2020-04-07 12:22:12 +00:00
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
2020-04-07 16:50:39 +00:00
|
|
|
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
|
2020-04-19 08:12:33 +00:00
|
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
2018-02-25 22:58:56 +00:00
|
|
|
|
2018-05-01 10:55:11 +00:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:required="false" />
|
2018-05-01 10:55:11 +00:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera.autofocus"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:required="false" />
|
2018-03-14 07:21:49 +00:00
|
|
|
|
2018-05-03 15:01:16 +00:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.microphone"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:required="false" />
|
2018-05-03 15:01:16 +00:00
|
|
|
|
2022-02-22 16:24:03 +00:00
|
|
|
<queries>
|
|
|
|
<package android:name="org.sufficientlysecure.keychain"/>
|
|
|
|
</queries>
|
|
|
|
|
2017-03-05 10:42:29 +00:00
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
<application
|
2021-10-04 12:17:01 +00:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:fullBackupContent="@xml/backup_content"
|
2018-05-01 10:55:11 +00:00
|
|
|
android:appCategory="social"
|
2020-04-19 08:12:33 +00:00
|
|
|
android:hardwareAccelerated="true"
|
2018-09-05 20:24:58 +00:00
|
|
|
android:icon="@mipmap/new_launcher"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:label="@string/app_name"
|
2020-10-04 13:48:08 +00:00
|
|
|
android:largeHeap="true"
|
2018-05-01 10:55:11 +00:00
|
|
|
android:networkSecurityConfig="@xml/network_security_configuration"
|
2020-11-13 11:24:42 +00:00
|
|
|
android:requestLegacyExternalStorage="true"
|
2022-02-22 15:05:24 +00:00
|
|
|
android:preserveLegacyExternalStorage="true"
|
2014-11-03 19:00:20 +00:00
|
|
|
android:theme="@style/ConversationsTheme"
|
2018-03-14 03:01:28 +00:00
|
|
|
tools:replace="android:label"
|
2020-11-13 11:24:42 +00:00
|
|
|
tools:targetApi="q">
|
2017-04-14 11:23:01 +00:00
|
|
|
|
2018-05-01 10:55:11 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.gms.car.application"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:resource="@xml/automotive_app_desc" />
|
2017-04-14 11:23:01 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<service android:name=".services.XmppConnectionService" />
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2021-01-20 07:14:36 +00:00
|
|
|
<receiver android:name=".services.EventReceiver">
|
2014-10-22 16:38:44 +00:00
|
|
|
<intent-filter>
|
2019-01-25 16:58:23 +00: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 16:38:44 +00:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2018-05-01 10:55:11 +00:00
|
|
|
|
2018-03-11 18:09:35 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ShareLocationActivity"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:label="@string/title_activity_share_location" />
|
2018-04-25 18:25:28 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.SearchActivity"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:label="@string/search_messages" />
|
2018-04-22 18:31:37 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.RecordingActivity"
|
2018-05-01 10:55:11 +00:00
|
|
|
android:configChanges="orientation|screenSize"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:theme="@style/ConversationsTheme.Dialog" />
|
2018-03-11 18:09:35 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ShowLocationActivity"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:label="@string/title_activity_show_location" />
|
2014-10-22 16:38:44 +00:00
|
|
|
<activity
|
2018-02-22 21:23:49 +00:00
|
|
|
android:name=".ui.ConversationActivity"
|
2018-03-07 18:05:28 +00:00
|
|
|
android:theme="@style/SplashTheme">
|
2014-10-22 16:38:44 +00:00
|
|
|
<intent-filter>
|
2019-01-25 16:58:23 +00:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2014-10-22 16:38:44 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2018-03-07 18:05:28 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ConversationsActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask"
|
2018-05-01 10:55:11 +00:00
|
|
|
android:minWidth="300dp"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:minHeight="300dp"
|
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2018-02-25 22:58:56 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ScanActivity"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:theme="@style/ConversationsTheme.FullScreen"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2014-10-22 16:38:44 +00:00
|
|
|
<activity
|
2017-12-07 20:59:13 +00:00
|
|
|
android:name=".ui.UriHandlerActivity"
|
2018-10-24 11:54:42 +00:00
|
|
|
android:label="@string/app_name">
|
2014-10-22 16:38:44 +00:00
|
|
|
<intent-filter>
|
2019-01-25 16:58:23 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<data android:scheme="xmpp" />
|
2014-10-22 16:38:44 +00:00
|
|
|
</intent-filter>
|
2016-05-29 18:44:58 +00:00
|
|
|
<intent-filter android:autoVerify="true">
|
2019-01-25 16:58:23 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2016-08-25 20:41:33 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2016-08-25 20:41:33 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:host="conversations.im" />
|
|
|
|
<data android:pathPrefix="/i/" />
|
|
|
|
<data android:pathPrefix="/j/" />
|
2016-05-29 18:44:58 +00:00
|
|
|
</intent-filter>
|
2017-12-07 20:59:13 +00:00
|
|
|
<intent-filter>
|
2019-01-25 16:58:23 +00:00
|
|
|
<action android:name="android.intent.action.SENDTO" />
|
2016-05-29 18:44:58 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2017-12-07 20:59:13 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<data android:scheme="imto" />
|
|
|
|
<data android:host="jabber" />
|
2017-12-07 20:59:13 +00:00
|
|
|
</intent-filter>
|
2021-10-03 15:01:32 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SENDTO" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:scheme="imto" />
|
|
|
|
<data android:host="xmpp" />
|
|
|
|
</intent-filter>
|
2017-12-10 11:36:21 +00:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".ui.StartConversationActivity"
|
|
|
|
android:label="@string/title_activity_start_conversation"
|
|
|
|
android:launchMode="singleTop">
|
2018-04-04 07:33:07 +00:00
|
|
|
<intent-filter>
|
2019-01-25 16:58:23 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2018-04-04 07:33:07 +00:00
|
|
|
</intent-filter>
|
2014-10-22 16:38:44 +00:00
|
|
|
</activity>
|
|
|
|
<activity
|
2014-11-04 17:08:30 +00:00
|
|
|
android:name=".ui.SettingsActivity"
|
2018-09-06 13:37:15 +00: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 16:38:44 +00:00
|
|
|
<activity
|
2014-11-04 17:08:30 +00:00
|
|
|
android:name=".ui.ChooseContactActivity"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:label="@string/title_activity_choose_contact" />
|
2014-12-21 20:43:58 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.BlocklistActivity"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:label="@string/title_activity_block_list" />
|
2015-10-20 13:27:33 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ChangePasswordActivity"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:label="@string/change_password_on_server" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.ChooseAccountForProfilePictureActivity"
|
|
|
|
android:enabled="false"
|
|
|
|
android:label="@string/choose_account">
|
2019-01-13 14:28:24 +00:00
|
|
|
<intent-filter android:label="@string/set_profile_picture">
|
2019-01-25 16:58:23 +00:00
|
|
|
<action android:name="android.intent.action.ATTACH_DATA" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-01-13 14:28:24 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<data android:mimeType="image/*" />
|
2019-01-13 14:28:24 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-12-07 15:45:20 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ShareViaAccountActivity"
|
|
|
|
android:label="@string/title_activity_share_via_account"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:launchMode="singleTop" />
|
2014-10-22 16:38:44 +00:00
|
|
|
<activity
|
2014-11-04 17:08:30 +00:00
|
|
|
android:name=".ui.EditAccountActivity"
|
2022-02-13 09:22:31 +00:00
|
|
|
android:exported="false"
|
2017-11-06 11:18:24 +00:00
|
|
|
android:launchMode="singleTop"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
2014-10-22 16:38:44 +00:00
|
|
|
<activity
|
2014-11-04 17:08:30 +00:00
|
|
|
android:name=".ui.ConferenceDetailsActivity"
|
2018-06-18 12:15:19 +00:00
|
|
|
android:label="@string/action_muc_details"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2014-10-22 16:38:44 +00:00
|
|
|
<activity
|
2014-11-04 17:08:30 +00:00
|
|
|
android:name=".ui.ContactDetailsActivity"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2014-10-22 16:38:44 +00:00
|
|
|
<activity
|
2014-11-04 17:08:30 +00:00
|
|
|
android:name=".ui.PublishProfilePictureActivity"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:label="@string/mgmt_account_publish_avatar"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2018-06-18 12:15:19 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.PublishGroupChatProfilePictureActivity"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:label="@string/group_chat_avatar" />
|
2014-10-22 16:38:44 +00:00
|
|
|
<activity
|
2014-11-04 17:08:30 +00:00
|
|
|
android:name=".ui.ShareWithActivity"
|
2017-11-06 11:18:24 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTop">
|
2019-01-11 16:45:18 +00:00
|
|
|
|
|
|
|
<intent-filter>
|
2019-01-25 16:58:23 +00:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
2019-01-11 16:45:18 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-01-11 16:45:18 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<data android:mimeType="text/plain" />
|
2019-01-11 16:45:18 +00:00
|
|
|
</intent-filter>
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
<intent-filter>
|
2019-01-25 16:58:23 +00:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
2015-04-11 12:53:10 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2015-04-11 12:53:10 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<data android:mimeType="*/*" />
|
2015-04-11 12:53:10 +00:00
|
|
|
</intent-filter>
|
2016-08-25 20:41:33 +00:00
|
|
|
|
2020-04-22 18:23:13 +00:00
|
|
|
<!-- the value here needs to be the full class name; independent of the configured applicationId -->
|
2015-12-06 10:55:37 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="android.service.chooser.chooser_target_service"
|
2020-04-22 18:23:13 +00:00
|
|
|
android:value="eu.siacs.conversations.services.ContactChooserTargetService" />
|
2014-10-22 16:38:44 +00:00
|
|
|
</activity>
|
2015-07-19 16:36:28 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.TrustKeysActivity"
|
2015-08-08 11:29:21 +00:00
|
|
|
android:label="@string/trust_omemo_fingerprints"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2014-11-04 17:08:30 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.AboutActivity"
|
2015-10-20 13:27:33 +00:00
|
|
|
android:parentActivityName=".ui.SettingsActivity">
|
2014-11-04 17:08:30 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:value="eu.siacs.conversations.ui.SettingsActivity" />
|
2018-02-16 18:49:14 +00:00
|
|
|
<intent-filter>
|
2019-01-25 16:58:23 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.PREFERENCE" />
|
2018-02-16 18:49:14 +00:00
|
|
|
</intent-filter>
|
2014-11-04 17:08:30 +00:00
|
|
|
</activity>
|
2019-01-25 16:58:23 +00:00
|
|
|
<activity
|
|
|
|
android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
|
|
|
|
android:theme="@style/Base.Theme.AppCompat" />
|
|
|
|
<activity android:name=".ui.MemorizingActivity" />
|
2016-08-25 20:41:33 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.MediaBrowserActivity"
|
|
|
|
android:label="@string/media_browser" />
|
2018-09-15 19:10:17 +00:00
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
<service android:name=".services.ExportBackupService" />
|
|
|
|
<service android:name=".services.ImportBackupService" />
|
2016-08-25 20:41:33 +00:00
|
|
|
<service
|
|
|
|
android:name=".services.ContactChooserTargetService"
|
|
|
|
android:permission="android.permission.BIND_CHOOSER_TARGET_SERVICE">
|
2015-12-06 10:55:37 +00:00
|
|
|
<intent-filter>
|
2019-01-25 16:58:23 +00:00
|
|
|
<action android:name="android.service.chooser.ChooserTargetService" />
|
2015-12-06 10:55:37 +00:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2016-08-25 20:41:33 +00:00
|
|
|
|
|
|
|
<provider
|
2021-01-18 17:26:46 +00:00
|
|
|
android:name="androidx.core.content.FileProvider"
|
2016-12-01 11:09:49 +00:00
|
|
|
android:authorities="${applicationId}.files"
|
2016-08-25 20:41:33 +00:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:resource="@xml/file_paths" />
|
2016-08-25 20:41:33 +00:00
|
|
|
</provider>
|
2016-11-22 21:31:46 +00:00
|
|
|
<provider
|
|
|
|
android:name=".services.BarcodeProvider"
|
2018-05-01 10:55:11 +00:00
|
|
|
android:authorities="${applicationId}.barcodes"
|
2016-11-22 21:31:46 +00:00
|
|
|
android:exported="false"
|
2019-01-25 16:58:23 +00:00
|
|
|
android:grantUriPermissions="true" />
|
2016-08-25 20:41:33 +00:00
|
|
|
|
2018-05-01 10:55:11 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ShortcutActivity"
|
2018-04-04 07:33:07 +00:00
|
|
|
android:label="@string/contact">
|
|
|
|
<intent-filter>
|
2019-01-25 16:58:23 +00:00
|
|
|
<action android:name="android.intent.action.CREATE_SHORTCUT" />
|
2018-04-04 07:33:07 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-01-25 16:58:23 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.MucUsersActivity"
|
|
|
|
android:label="@string/group_chat_members" />
|
2019-12-22 17:19:02 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ChannelDiscoveryActivity"
|
|
|
|
android:label="@string/discover_channels" />
|
2020-04-19 08:12:33 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.RtpSessionActivity"
|
|
|
|
android:autoRemoveFromRecents="true"
|
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:supportsPictureInPicture="true" />
|
2014-10-22 16:38:44 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|