session-android/app/src/main/AndroidManifest.xml

474 lines
24 KiB
XML
Raw Normal View History

2011-12-20 19:20:44 +01:00
<?xml version="1.0" encoding="utf-8"?>
2021-06-02 03:34:30 +02:00
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
2019-11-19 23:50:40 +01:00
xmlns:tools="http://schemas.android.com/tools"
package="network.loki.messenger">
<uses-sdk tools:overrideLibrary="com.amulyakhare.textdrawable,com.astuetz.pagerslidingtabstrip,pl.tajchert.waitingdots,com.h6ah4i.android.multiselectlistpreferencecompat,android.support.v13,com.davemorrissey.labs.subscaleview,com.tomergoldst.tooltips,com.klinker.android.send_message,com.takisoft.colorpicker,android.support.v14.preference" />
<permission
android:name="network.loki.messenger.ACCESS_SESSION_SECRETS"
2021-06-02 03:34:30 +02:00
android:label="Access to Session secrets"
2019-11-19 23:50:40 +01:00
android:protectionLevel="signature" />
<uses-feature
android:name="android.hardware.camera"
android:required="false" />
<uses-feature
android:name="android.hardware.bluetooth"
android:required="false" />
<uses-feature
android:name="android.hardware.microphone"
android:required="false" />
<uses-feature
android:name="android.hardware.wifi"
android:required="false" />
<uses-feature
android:name="android.hardware.portrait"
android:required="false" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<uses-permission android:name="android.permission.BLUETOOTH" />
2019-08-19 01:50:28 +02:00
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
2019-11-19 23:50:40 +01:00
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
<uses-permission android:name="network.loki.messenger.ACCESS_SESSION_SECRETS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
2017-11-25 07:00:30 +01:00
<uses-permission android:name="android.permission.RECORD_AUDIO" />
2020-02-27 05:36:22 +01:00
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
2017-11-25 07:00:30 +01:00
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
2019-11-19 23:50:40 +01:00
<uses-permission android:name="android.permission.VIBRATE" />
2017-11-25 07:00:30 +01:00
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
2017-11-25 07:00:30 +01:00
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.INTERNET" />
2015-07-14 23:36:35 +02:00
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
2019-11-19 23:50:40 +01:00
<uses-permission android:name="android.permission.INSTALL_SHORTCUT" />
2020-02-27 05:36:22 +01:00
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
<uses-permission android:name="android.permission.RAISED_THREAD_PRIORITY" />
2019-11-19 23:50:40 +01:00
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
2020-02-27 05:36:22 +01:00
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" tools:node="remove"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT"/>
2020-02-27 05:36:22 +01:00
2021-07-09 02:12:30 +02:00
<queries>
<intent>
<action android:name="android.media.action.IMAGE_CAPTURE" />
</intent>
</queries>
2020-09-17 07:30:59 +02:00
<!-- The allowBackup="false" below is important to guard against potential malicious backups -->
2021-06-02 03:34:30 +02:00
2019-11-19 23:50:40 +01:00
<application
android:name="org.thoughtcrime.securesms.ApplicationContext"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:networkSecurityConfig="@xml/network_security_configuration"
android:supportsRtl="true"
android:theme="@style/Theme.Session.DayNight"
2019-11-19 23:50:40 +01:00
tools:replace="android:allowBackup">
2021-06-02 03:34:30 +02:00
<!-- Disable all analytics -->
2019-11-19 23:50:40 +01:00
<meta-data
android:name="firebase_analytics_collection_deactivated"
android:value="true" />
<meta-data
android:name="firebase_crashlytics_collection_enabled"
android:value="false" />
2020-06-04 06:17:44 +02:00
<meta-data
android:name="google_analytics_ssaid_collection_enabled"
android:value="false" />
2019-11-19 23:50:40 +01:00
<meta-data
android:name="google_analytics_adid_collection_enabled"
android:value="false" />
<meta-data
android:name="firebase_messaging_auto_init_enabled"
android:value="false" />
2019-12-16 11:43:08 +01:00
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.onboarding.LandingActivity"
android:screenOrientation="portrait"
2021-06-02 03:34:30 +02:00
android:theme="@style/Theme.Session.DayNight.FlatActionBar" />
2019-12-16 11:43:08 +01:00
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.onboarding.RegisterActivity"
android:screenOrientation="portrait"
android:theme="@style/Theme.Session.DayNight.FlatActionBar" />
2020-10-20 06:39:01 +02:00
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.onboarding.RecoveryPhraseRestoreActivity"
2020-10-20 06:39:01 +02:00
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize"
android:theme="@style/Theme.Session.DayNight.FlatActionBar" />
2019-12-16 11:43:08 +01:00
<activity
2021-07-09 05:56:38 +02:00
android:name="org.thoughtcrime.securesms.onboarding.LinkDeviceActivity"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize"
2021-06-02 03:34:30 +02:00
android:theme="@style/Theme.Session.DayNight.FlatActionBar" />
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.onboarding.DisplayNameActivity"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize"
2021-06-02 03:34:30 +02:00
android:theme="@style/Theme.Session.DayNight.FlatActionBar" />
2020-04-16 06:49:23 +02:00
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.onboarding.PNModeActivity"
android:screenOrientation="portrait"
2021-06-02 03:34:30 +02:00
android:theme="@style/Theme.Session.DayNight.FlatActionBar" />
2019-12-17 14:27:59 +01:00
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.home.HomeActivity"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait"
2020-01-06 02:07:55 +01:00
android:launchMode="singleTask"
android:theme="@style/Theme.Session.DayNight.NoActionBar" />
<activity
android:name="org.thoughtcrime.securesms.messagerequests.MessageRequestsActivity"
android:exported="false"
android:label="@string/activity_message_requests_title"
android:screenOrientation="portrait" />
2020-01-06 04:26:52 +01:00
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.preferences.SettingsActivity"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait"
2021-06-02 03:34:30 +02:00
android:label="@string/activity_settings_title" />
2020-01-06 06:05:57 +01:00
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.home.PathActivity"
2020-05-28 08:43:37 +02:00
android:screenOrientation="portrait" />
<activity
2021-07-09 05:56:38 +02:00
android:name="org.thoughtcrime.securesms.preferences.QRCodeActivity"
android:screenOrientation="portrait"
2021-06-02 03:34:30 +02:00
android:theme="@style/Theme.Session.DayNight.FlatActionBar" />
<activity
2021-07-09 05:56:38 +02:00
android:name="org.thoughtcrime.securesms.dms.CreatePrivateChatActivity"
android:screenOrientation="portrait"
2021-06-02 03:34:30 +02:00
android:windowSoftInputMode="adjustResize"
android:theme="@style/Theme.Session.DayNight.FlatActionBar" />
2020-01-31 03:57:24 +01:00
<activity
2021-07-09 05:56:38 +02:00
android:name="org.thoughtcrime.securesms.groups.CreateClosedGroupActivity"
2020-01-31 03:57:24 +01:00
android:screenOrientation="portrait" />
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.groups.EditClosedGroupActivity"
android:label="@string/activity_edit_closed_group_title"
android:screenOrientation="portrait" />
<activity
2021-07-09 05:56:38 +02:00
android:name="org.thoughtcrime.securesms.groups.JoinPublicChatActivity"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize"
android:theme="@style/Theme.Session.DayNight.FlatActionBar" />
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.onboarding.SeedActivity"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait" />
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.contacts.SelectContactsActivity"
android:screenOrientation="portrait" />
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.preferences.PrivacySettingsActivity"
android:label="@string/activity_privacy_settings_title"
2021-06-02 03:34:30 +02:00
android:screenOrientation="portrait" />
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.preferences.NotificationSettingsActivity"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait" />
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.preferences.ChatSettingsActivity"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait" />
2021-06-02 03:34:30 +02:00
2019-11-19 23:50:40 +01:00
<activity
android:name="org.thoughtcrime.securesms.ShareActivity"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"
android:excludeFromRecents="true"
android:launchMode="singleTask"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait"
2019-11-19 23:50:40 +01:00
android:noHistory="true"
android:taskAffinity=""
android:theme="@style/Theme.TextSecure.DayNight.NoActionBar"
2019-11-19 23:50:40 +01:00
android:windowSoftInputMode="stateHidden">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="audio/*" />
<data android:mimeType="image/*" />
<data android:mimeType="text/plain" />
<data android:mimeType="video/*" />
<data android:mimeType="application/*" />
<data android:mimeType="text/*" />
<data android:mimeType="*/*" />
</intent-filter>
<meta-data
android:name="android.service.chooser.chooser_target_service"
android:value=".service.DirectShareService" />
2019-11-19 23:50:40 +01:00
</activity>
<activity-alias
android:name=".RoutingActivity"
android:exported="true"
2021-07-09 03:14:21 +02:00
android:targetActivity="org.thoughtcrime.securesms.home.HomeActivity">
2019-11-19 23:50:40 +01:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
</intent-filter>
<meta-data
android:name="com.sec.minimode.icon.portrait.normal"
android:resource="@mipmap/ic_launcher" />
<meta-data
android:name="com.sec.minimode.icon.landscape.normal"
android:resource="@mipmap/ic_launcher" />
</activity-alias>
2021-05-31 06:29:11 +02:00
<activity
android:name="org.thoughtcrime.securesms.conversation.v2.ConversationActivityV2"
android:screenOrientation="portrait"
2021-07-09 03:14:21 +02:00
android:parentActivityName="org.thoughtcrime.securesms.home.HomeActivity"
android:theme="@style/Theme.Session.DayNight.FlatActionBar">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
2021-07-09 03:14:21 +02:00
android:value="org.thoughtcrime.securesms.home.HomeActivity" />
</activity>
2021-07-13 08:22:10 +02:00
<activity
android:name="org.thoughtcrime.securesms.conversation.v2.MessageDetailActivity"
android:screenOrientation="portrait"
android:theme="@style/Theme.TextSecure.DayNight">
</activity>
2021-05-14 07:17:16 +02:00
<activity
2021-07-09 03:14:21 +02:00
android:name="org.thoughtcrime.securesms.groups.OpenGroupGuidelinesActivity"
2021-05-14 07:17:16 +02:00
android:screenOrientation="portrait"
2021-06-02 03:34:30 +02:00
android:theme="@style/Theme.TextSecure.DayNight" />
2020-01-17 00:43:36 +01:00
<activity
android:name="org.thoughtcrime.securesms.longmessage.LongMessageActivity"
android:screenOrientation="portrait"
2021-06-02 03:34:30 +02:00
android:theme="@style/Theme.TextSecure.DayNight" />
2019-11-19 23:50:40 +01:00
<activity
android:name="org.thoughtcrime.securesms.DatabaseUpgradeActivity"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"
android:launchMode="singleTask"
android:theme="@style/NoAnimation.Theme.AppCompat.Light.DarkActionBar" />
<activity
android:name="org.thoughtcrime.securesms.PassphrasePromptActivity"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"
android:launchMode="singleTask"
2021-06-02 03:34:30 +02:00
android:theme="@style/Theme.Session.DayNight.NoActionBar" />
2019-11-19 23:50:40 +01:00
<activity
android:name="org.thoughtcrime.securesms.giph.ui.GiphyActivity"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"
2020-08-26 11:02:40 +02:00
android:theme="@style/Theme.TextSecure.DayNight.NoActionBar"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait"
2019-11-19 23:50:40 +01:00
android:windowSoftInputMode="stateHidden" />
<activity
android:name="org.thoughtcrime.securesms.mediasend.MediaSendActivity"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"
2020-01-17 05:00:36 +01:00
android:screenOrientation="portrait"
android:theme="@style/Theme.TextSecure.DayNight.NoActionBar"
2019-11-19 23:50:40 +01:00
android:windowSoftInputMode="stateHidden" />
<activity
android:name="org.thoughtcrime.securesms.MediaPreviewActivity"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"
android:label="@string/AndroidManifest__media_preview"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait"
android:theme="@style/Theme.Session.DayNight.NoActionBar"
2019-11-19 23:50:40 +01:00
android:launchMode="singleTask"
android:windowSoftInputMode="stateHidden" />
<activity
android:name="org.thoughtcrime.securesms.MediaOverviewActivity"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"
android:launchMode="singleTask"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait"
android:theme="@style/Theme.Session.DayNight.NoActionBar"
2019-11-19 23:50:40 +01:00
android:windowSoftInputMode="stateHidden" />
<activity
android:name="org.thoughtcrime.securesms.DummyActivity"
android:allowTaskReparenting="true"
android:alwaysRetainTaskState="false"
android:clearTaskOnLaunch="true"
android:enabled="true"
android:excludeFromRecents="true"
android:finishOnTaskLaunch="true"
android:noHistory="true"
android:stateNotNeeded="true"
android:theme="@android:style/Theme.NoDisplay" />
<activity
android:name="org.thoughtcrime.securesms.scribbles.StickerSelectActivity"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"
2021-06-02 03:34:30 +02:00
android:theme="@style/Theme.Session.ForceDark" />
2019-11-19 23:50:40 +01:00
<activity
android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
2020-01-17 00:43:36 +01:00
android:screenOrientation="portrait"
2020-08-26 13:15:56 +02:00
android:theme="@style/Theme.AppCompat" />
2019-11-19 23:50:40 +01:00
<activity
android:name="org.thoughtcrime.securesms.ShortcutLauncherActivity"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"
android:exported="true"
2020-09-02 04:47:56 +02:00
android:theme="@style/Theme.Session.DayNight.NoActionBar" />
<activity android:name="org.thoughtcrime.securesms.calls.WebRtcCallActivity"
2021-08-30 08:39:47 +02:00
android:launchMode="singleTop"
android:screenOrientation="portrait"
android:showForAllUsers="true"
android:parentActivityName="org.thoughtcrime.securesms.home.HomeActivity"
android:theme="@style/Theme.Session.CallActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="org.thoughtcrime.securesms.home.HomeActivity" />
</activity>
<service
2021-07-09 05:25:57 +02:00
android:name="org.thoughtcrime.securesms.notifications.PushNotificationService"
android:enabled="true"
2020-09-18 02:34:30 +02:00
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
2021-12-08 07:29:10 +01:00
<service android:enabled="true" android:name="org.thoughtcrime.securesms.service.WebRtcCallService"
android:exported="false" />
2019-11-19 23:50:40 +01:00
<service
android:name="org.thoughtcrime.securesms.service.KeyCachingService"
android:enabled="true"
android:exported="false" />
<service
android:name="org.thoughtcrime.securesms.service.DirectShareService"
android:permission="android.permission.BIND_CHOOSER_TARGET_SERVICE">
<intent-filter>
<action android:name="android.service.chooser.ChooserTargetService" />
</intent-filter>
</service>
<service android:name="org.thoughtcrime.securesms.service.GenericForegroundService" />
<receiver
android:name="org.thoughtcrime.securesms.notifications.MarkReadReceiver"
android:enabled="true"
android:exported="false">
<intent-filter>
<action android:name="network.loki.securesms.notifications.CLEAR" />
2019-11-19 23:50:40 +01:00
</intent-filter>
</receiver>
<receiver
android:name="org.thoughtcrime.securesms.notifications.RemoteReplyReceiver"
android:enabled="true"
android:exported="false">
<intent-filter>
<action android:name="network.loki.securesms.notifications.WEAR_REPLY" />
2019-11-19 23:50:40 +01:00
</intent-filter>
</receiver>
<receiver
android:name="org.thoughtcrime.securesms.notifications.AndroidAutoHeardReceiver"
android:exported="false">
<intent-filter>
<action android:name="network.loki.securesms.notifications.ANDROID_AUTO_HEARD" />
2019-11-19 23:50:40 +01:00
</intent-filter>
</receiver>
<receiver
android:name="org.thoughtcrime.securesms.notifications.AndroidAutoReplyReceiver"
android:exported="false">
<intent-filter>
<action android:name="network.loki.securesms.notifications.ANDROID_AUTO_REPLY" />
2019-11-19 23:50:40 +01:00
</intent-filter>
</receiver>
<receiver android:name="org.thoughtcrime.securesms.service.ExpirationListener" />
<provider
android:name="org.thoughtcrime.securesms.providers.PartProvider"
android:authorities="network.loki.provider.securesms"
android:exported="false"
android:grantUriPermissions="true" />
<provider
android:name="androidx.core.content.FileProvider"
2019-11-19 23:50:40 +01:00
android:authorities="network.loki.securesms.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_provider_paths" />
</provider>
<provider
android:name="org.thoughtcrime.securesms.database.DatabaseContentProviders$Conversation"
android:authorities="network.loki.securesms.database.conversation"
android:exported="false" />
<provider
android:name="org.thoughtcrime.securesms.database.DatabaseContentProviders$ConversationList"
android:authorities="network.loki.securesms.database.conversationlist"
android:exported="false" />
<provider
android:name="org.thoughtcrime.securesms.database.DatabaseContentProviders$Attachment"
android:authorities="network.loki.securesms.database.attachment"
android:exported="false" />
<provider
android:name="org.thoughtcrime.securesms.database.DatabaseContentProviders$Sticker"
android:authorities="network.loki.securesms.database.sticker"
android:exported="false" />
<provider
android:name="org.thoughtcrime.securesms.database.DatabaseContentProviders$StickerPack"
android:authorities="network.loki.securesms.database.stickerpack"
android:exported="false" />
<receiver android:name="org.thoughtcrime.securesms.service.BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="network.loki.securesms.RESTART" />
2019-11-19 23:50:40 +01:00
</intent-filter>
</receiver>
<receiver android:name="org.thoughtcrime.securesms.service.LocalBackupListener">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver android:name="org.thoughtcrime.securesms.service.PersistentConnectionBootListener">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver android:name="org.thoughtcrime.securesms.notifications.LocaleChangedReceiver">
<intent-filter>
<action android:name="android.intent.action.LOCALE_CHANGED" />
</intent-filter>
</receiver>
<receiver android:name="org.thoughtcrime.securesms.notifications.DeleteNotificationReceiver">
<intent-filter>
<action android:name="network.loki.securesms.DELETE_NOTIFICATION" />
2019-11-19 23:50:40 +01:00
</intent-filter>
</receiver>
<receiver
android:name="org.thoughtcrime.securesms.service.PanicResponderListener"
android:exported="true">
<intent-filter>
<action android:name="info.guardianproject.panic.action.TRIGGER" />
</intent-filter>
2020-01-22 01:57:16 +01:00
</receiver>
2020-09-18 02:34:30 +02:00
<receiver
2021-07-09 05:56:38 +02:00
android:name="org.thoughtcrime.securesms.notifications.BackgroundPollWorker$BootBroadcastReceiver"
2020-09-18 02:34:30 +02:00
android:enabled="true">
2019-11-19 23:50:40 +01:00
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
2020-01-22 01:57:16 +01:00
</receiver>
2019-11-19 23:50:40 +01:00
<service
android:name="org.thoughtcrime.securesms.jobmanager.JobSchedulerScheduler$SystemService"
android:enabled="@bool/enable_job_service"
android:permission="android.permission.BIND_JOB_SERVICE"
tools:targetApi="26" />
<service
android:name="org.thoughtcrime.securesms.jobmanager.KeepAliveService"
android:enabled="@bool/enable_alarm_manager" />
<receiver
android:name="org.thoughtcrime.securesms.jobmanager.AlarmManagerScheduler$RetryReceiver"
android:enabled="@bool/enable_alarm_manager" /> <!-- Probably don't need this one -->
<uses-library
android:name="com.sec.android.app.multiwindow"
android:required="false" />
<meta-data
android:name="com.sec.android.support.multiwindow"
android:value="true" />
<meta-data
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W"
android:value="632.0dip" />
<meta-data
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H"
android:value="598.0dip" />
<meta-data
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W"
android:value="632.0dip" />
<meta-data
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H"
android:value="598.0dip" />
</application>
</manifest>