2017-05-04 04:29:33 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="com.keylesspalace.tusky">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2022-11-05 05:22:38 +11:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
2017-05-04 04:29:33 +10:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2017-07-19 05:32:43 +10:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2018-09-20 06:36:46 +10:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" /> <!-- For notifications -->
|
2019-07-20 04:10:20 +10:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2018-02-01 08:24:08 +11:00
|
|
|
|
2017-05-04 04:29:33 +10:00
|
|
|
<application
|
2019-07-20 04:10:20 +10:00
|
|
|
android:name=".TuskyApplication"
|
2022-05-18 03:55:46 +10:00
|
|
|
android:appCategory="social"
|
2018-04-29 05:19:23 +10:00
|
|
|
android:allowBackup="false"
|
2017-05-04 04:29:33 +10:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
2019-07-28 05:51:50 +10:00
|
|
|
android:theme="@style/TuskyTheme"
|
|
|
|
android:usesCleartextTraffic="false">
|
2019-07-20 04:10:20 +10:00
|
|
|
|
2022-04-14 03:22:01 +10:00
|
|
|
<activity
|
|
|
|
android:name=".SplashActivity"
|
|
|
|
android:theme="@style/SplashTheme"
|
|
|
|
android:exported="true">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.shortcuts"
|
|
|
|
android:resource="@xml/share_shortcuts" />
|
|
|
|
|
|
|
|
</activity>
|
2017-05-04 04:29:33 +10:00
|
|
|
<activity
|
2022-03-09 07:22:19 +11:00
|
|
|
android:name=".components.login.LoginActivity"
|
2017-05-04 04:29:33 +10:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
</activity>
|
2022-03-09 07:22:19 +11:00
|
|
|
<activity android:name=".components.login.LoginWebViewActivity" />
|
2017-05-04 04:29:33 +10:00
|
|
|
<activity
|
2017-05-04 06:28:46 +10:00
|
|
|
android:name=".MainActivity"
|
2022-03-10 06:50:23 +11:00
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize"
|
|
|
|
android:exported="true">
|
|
|
|
|
2017-05-04 04:29:33 +10:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
2019-07-20 04:10:20 +10:00
|
|
|
|
2017-05-04 04:29:33 +10:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-07-20 04:10:20 +10:00
|
|
|
|
2017-05-04 04:29:33 +10:00
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
2019-07-20 04:10:20 +10:00
|
|
|
|
2017-05-04 04:29:33 +10:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-07-20 04:10:20 +10:00
|
|
|
|
2017-05-04 04:29:33 +10:00
|
|
|
<data android:mimeType="image/*" />
|
|
|
|
</intent-filter>
|
2018-09-29 01:11:32 +10:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
2019-07-20 04:10:20 +10:00
|
|
|
|
2018-09-29 01:11:32 +10:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-07-20 04:10:20 +10:00
|
|
|
|
2018-09-29 01:11:32 +10:00
|
|
|
<data android:mimeType="video/*" />
|
|
|
|
</intent-filter>
|
2017-05-04 04:29:33 +10:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
2019-07-20 04:10:20 +10:00
|
|
|
|
2017-05-04 04:29:33 +10:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-07-20 04:10:20 +10:00
|
|
|
|
2017-05-04 04:29:33 +10:00
|
|
|
<data android:mimeType="image/*" />
|
|
|
|
</intent-filter>
|
2018-09-29 01:11:32 +10:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
2019-07-20 04:10:20 +10:00
|
|
|
|
2018-09-29 01:11:32 +10:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-07-20 04:10:20 +10:00
|
|
|
|
2018-09-29 01:11:32 +10:00
|
|
|
<data android:mimeType="video/*" />
|
|
|
|
</intent-filter>
|
2020-01-17 05:05:52 +11:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="audio/*" />
|
|
|
|
</intent-filter>
|
2019-07-20 04:10:20 +10:00
|
|
|
|
2019-02-06 20:23:02 +11:00
|
|
|
<meta-data
|
|
|
|
android:name="android.service.chooser.chooser_target_service"
|
2019-10-23 06:18:20 +11:00
|
|
|
android:value="androidx.sharetarget.ChooserTargetServiceCompat" />
|
|
|
|
|
2019-02-06 20:23:02 +11:00
|
|
|
</activity>
|
|
|
|
<activity
|
2019-12-20 05:09:40 +11:00
|
|
|
android:name=".components.compose.ComposeActivity"
|
2019-02-06 20:23:02 +11:00
|
|
|
android:theme="@style/TuskyDialogActivityTheme"
|
2020-11-19 07:12:27 +11:00
|
|
|
android:windowSoftInputMode="stateVisible|adjustResize" />
|
2017-05-04 06:28:46 +10:00
|
|
|
<activity
|
2022-08-15 19:00:18 +10:00
|
|
|
android:name=".components.viewthread.ViewThreadActivity"
|
2017-05-04 06:28:46 +10:00
|
|
|
android:configChanges="orientation|screenSize" />
|
2019-07-20 04:10:20 +10:00
|
|
|
<activity
|
|
|
|
android:name=".ViewMediaActivity"
|
|
|
|
android:theme="@style/TuskyBaseTheme" />
|
|
|
|
<activity
|
2022-01-12 05:55:17 +11:00
|
|
|
android:name=".components.account.AccountActivity"
|
2019-10-23 06:18:20 +11:00
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize" />
|
2017-05-04 04:29:33 +10:00
|
|
|
<activity android:name=".EditProfileActivity" />
|
2020-09-02 20:27:51 +10:00
|
|
|
<activity android:name=".components.preference.PreferencesActivity" />
|
2019-11-19 20:15:32 +11:00
|
|
|
<activity android:name=".StatusListActivity" />
|
2017-05-04 04:29:33 +10:00
|
|
|
<activity android:name=".AccountListActivity" />
|
2017-04-16 04:05:25 +10:00
|
|
|
<activity android:name=".AboutActivity" />
|
2019-02-13 05:22:37 +11:00
|
|
|
<activity android:name=".TabPreferenceActivity" />
|
2017-05-04 04:29:33 +10:00
|
|
|
<activity
|
2021-05-22 01:51:47 +10:00
|
|
|
android:name="com.canhub.cropper.CropImageActivity"
|
2017-05-04 04:29:33 +10:00
|
|
|
android:theme="@style/Base.Theme.AppCompat" />
|
2017-06-20 05:47:53 +10:00
|
|
|
<activity
|
2019-07-20 04:10:20 +10:00
|
|
|
android:name=".components.search.SearchActivity"
|
2022-03-10 06:50:23 +11:00
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:exported="false">
|
2017-06-19 18:18:39 +10:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
|
|
</intent-filter>
|
2019-07-20 04:10:20 +10:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.searchable"
|
|
|
|
android:resource="@xml/searchable" />
|
2017-06-19 18:18:39 +10:00
|
|
|
</activity>
|
2018-01-07 05:01:37 +11:00
|
|
|
<activity android:name=".ListsActivity" />
|
2018-06-25 21:02:34 +10:00
|
|
|
<activity android:name=".LicenseActivity" />
|
2019-03-21 05:25:26 +11:00
|
|
|
<activity android:name=".FiltersActivity" />
|
2019-07-20 04:10:20 +10:00
|
|
|
<activity
|
|
|
|
android:name=".components.report.ReportActivity"
|
2019-06-10 00:55:34 +10:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
|
2019-06-11 23:56:27 +10:00
|
|
|
<activity android:name=".components.instancemute.InstanceListActivity" />
|
2022-03-21 06:21:42 +11:00
|
|
|
<activity android:name=".components.scheduled.ScheduledStatusActivity" />
|
2020-11-19 07:12:27 +11:00
|
|
|
<activity android:name=".components.announcements.AnnouncementsActivity" />
|
2021-01-22 04:57:09 +11:00
|
|
|
<activity android:name=".components.drafts.DraftsActivity" />
|
2017-05-04 04:29:33 +10:00
|
|
|
|
2022-03-10 06:50:23 +11:00
|
|
|
<receiver android:name=".receiver.NotificationClearBroadcastReceiver"
|
|
|
|
android:exported="false" />
|
2018-05-06 19:07:10 +10:00
|
|
|
<receiver
|
|
|
|
android:name=".receiver.SendStatusBroadcastReceiver"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" />
|
2022-05-18 03:32:09 +10:00
|
|
|
<receiver
|
|
|
|
android:exported="true"
|
|
|
|
android:enabled="true"
|
|
|
|
android:name=".receiver.UnifiedPushBroadcastReceiver"
|
|
|
|
tools:ignore="ExportedReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.unifiedpush.android.connector.MESSAGE"/>
|
|
|
|
<action android:name="org.unifiedpush.android.connector.UNREGISTERED"/>
|
|
|
|
<action android:name="org.unifiedpush.android.connector.NEW_ENDPOINT"/>
|
|
|
|
<action android:name="org.unifiedpush.android.connector.REGISTRATION_FAILED"/>
|
|
|
|
<action android:name="org.unifiedpush.android.connector.REGISTRATION_REFUSED"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
<receiver
|
|
|
|
android:exported="true"
|
|
|
|
android:enabled="true"
|
|
|
|
android:name=".receiver.NotificationBlockStateBroadcastReceiver"
|
|
|
|
tools:ignore="ExportedReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.app.action.NOTIFICATION_CHANNEL_BLOCK_STATE_CHANGED"/>
|
|
|
|
<action android:name="android.app.action.NOTIFICATION_CHANNEL_GROUP_BLOCK_STATE_CHANGED"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2018-05-06 19:07:10 +10:00
|
|
|
|
2017-05-04 04:29:33 +10:00
|
|
|
<service
|
2019-07-20 04:10:20 +10:00
|
|
|
android:name=".service.TuskyTileService"
|
2022-09-14 03:48:09 +10:00
|
|
|
android:icon="@drawable/ic_quicksettings"
|
2022-03-21 06:21:42 +11:00
|
|
|
android:label="@string/tusky_compose_post_quicksetting_label"
|
2019-07-20 04:10:20 +10:00
|
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
|
2022-03-10 06:50:23 +11:00
|
|
|
android:exported="true"
|
2019-07-20 04:10:20 +10:00
|
|
|
tools:targetApi="24">
|
2017-05-04 04:29:33 +10:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2019-10-23 06:18:20 +11:00
|
|
|
|
2022-03-21 06:21:42 +11:00
|
|
|
<service android:name=".service.SendStatusService"
|
2022-03-10 06:50:23 +11:00
|
|
|
android:exported="false" />
|
2017-05-04 04:29:33 +10:00
|
|
|
|
|
|
|
<provider
|
2018-12-18 01:25:35 +11:00
|
|
|
android:name="androidx.core.content.FileProvider"
|
2017-12-08 22:15:46 +11:00
|
|
|
android:authorities="${applicationId}.fileprovider"
|
2017-05-04 04:29:33 +10:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/file_paths" />
|
|
|
|
</provider>
|
2020-05-13 02:46:49 +10:00
|
|
|
|
|
|
|
<!-- disable automatic WorkManager initialization -->
|
|
|
|
<provider
|
2022-03-10 06:50:23 +11:00
|
|
|
android:name="androidx.startup.InitializationProvider"
|
|
|
|
android:authorities="${applicationId}.androidx-startup"
|
2020-05-13 02:46:49 +10:00
|
|
|
android:exported="false"
|
2022-03-10 06:50:23 +11:00
|
|
|
tools:node="merge">
|
|
|
|
<meta-data
|
|
|
|
android:name="androidx.work.WorkManagerInitializer"
|
|
|
|
android:value="androidx.startup"
|
|
|
|
tools:node="remove" />
|
|
|
|
</provider>
|
|
|
|
|
2017-05-04 04:29:33 +10:00
|
|
|
</application>
|
|
|
|
|
2020-11-19 07:12:27 +11:00
|
|
|
</manifest>
|