2015-09-24 17:27:43 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-10-04 15:22:55 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2015-09-24 17:27:43 +02:00
|
|
|
|
2021-01-23 04:47:01 +01:00
|
|
|
<!-- Internet -->
|
2015-09-24 17:27:43 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2017-01-20 21:18:15 +01:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
2021-01-23 00:03:36 +01:00
|
|
|
|
2021-01-23 04:47:01 +01:00
|
|
|
<!-- Storage -->
|
2015-10-03 00:14:40 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2021-01-23 00:03:36 +01:00
|
|
|
|
|
|
|
<!-- For background jobs -->
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2015-11-06 20:22:01 +01:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2020-03-07 21:51:46 +01:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
2021-01-23 00:03:36 +01:00
|
|
|
|
|
|
|
<!-- For managing extensions -->
|
2017-12-02 17:10:31 +01:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2019-12-27 13:24:19 +01:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
2021-09-25 20:31:52 +02:00
|
|
|
<uses-permission android:name="android.permission.UPDATE_PACKAGES_WITHOUT_USER_ACTION" />
|
2021-01-23 00:03:58 +01:00
|
|
|
<!-- To view extension packages in API 30+ -->
|
|
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
|
2015-09-24 17:27:43 +02:00
|
|
|
|
2022-09-22 04:39:32 +02:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
|
|
|
2022-10-23 01:53:59 +02:00
|
|
|
<!-- Remove permission from Firebase dependency -->
|
|
|
|
<uses-permission android:name="com.google.android.gms.permission.AD_ID"
|
|
|
|
tools:node="remove" />
|
|
|
|
|
2015-09-24 17:27:43 +02:00
|
|
|
<application
|
|
|
|
android:name=".App"
|
2021-07-31 17:43:08 +02:00
|
|
|
android:allowBackup="false"
|
2016-04-13 14:08:07 +02:00
|
|
|
android:hardwareAccelerated="true"
|
2015-09-24 17:27:43 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2016-03-26 13:28:22 +01:00
|
|
|
android:largeHeap="true"
|
2022-08-14 17:52:46 +02:00
|
|
|
android:localeConfig="@xml/locales_config"
|
2020-04-18 20:47:22 +02:00
|
|
|
android:requestLegacyExternalStorage="true"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2021-07-02 14:44:04 +02:00
|
|
|
android:theme="@style/Theme.Tachiyomi"
|
2021-08-06 20:49:51 +02:00
|
|
|
android:supportsRtl="true"
|
2020-10-11 22:03:24 +02:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config">
|
2021-07-31 17:48:50 +02:00
|
|
|
|
2022-10-04 15:22:55 +02:00
|
|
|
<!-- enable profiling by macrobenchmark -->
|
|
|
|
<profileable
|
|
|
|
android:shell="true"
|
|
|
|
tools:targetApi="q" />
|
|
|
|
|
2017-06-17 12:34:46 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ui.main.MainActivity"
|
2020-01-29 04:15:15 +01:00
|
|
|
android:launchMode="singleTop"
|
2021-07-31 17:48:50 +02:00
|
|
|
android:theme="@style/Theme.Tachiyomi.SplashScreen"
|
|
|
|
android:exported="true">
|
2015-09-24 17:27:43 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2020-01-29 04:15:15 +01:00
|
|
|
<!--suppress AndroidDomInspection -->
|
2020-04-18 20:47:22 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.app.shortcuts"
|
|
|
|
android:resource="@xml/shortcuts" />
|
2020-01-29 04:15:15 +01:00
|
|
|
</activity>
|
2022-10-16 22:35:20 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:process=":error_handler"
|
|
|
|
android:name=".crash.CrashActivity"
|
2022-10-24 04:07:06 +02:00
|
|
|
android:exported="false" />
|
2022-10-16 22:35:20 +02:00
|
|
|
|
2020-01-29 04:15:15 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.main.DeepLinkActivity"
|
|
|
|
android:launchMode="singleTask"
|
2020-12-09 04:48:04 +01:00
|
|
|
android:theme="@android:style/Theme.NoDisplay"
|
2021-07-31 17:48:50 +02:00
|
|
|
android:label="@string/action_global_search"
|
|
|
|
android:exported="true">
|
2019-04-03 10:25:52 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
2020-04-18 20:47:22 +02:00
|
|
|
<action android:name="com.google.android.gms.actions.SEARCH_ACTION" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-04-03 10:25:52 +02:00
|
|
|
</intent-filter>
|
2019-04-12 18:40:04 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="eu.kanade.tachiyomi.SEARCH" />
|
2020-04-18 20:47:22 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-04-12 18:40:04 +02:00
|
|
|
</intent-filter>
|
2020-12-09 04:48:04 +01:00
|
|
|
<intent-filter>
|
2021-01-03 17:08:23 +01:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
2020-12-09 04:48:04 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
2020-04-18 20:47:22 +02:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.searchable"
|
|
|
|
android:resource="@xml/searchable" />
|
2015-09-24 17:27:43 +02:00
|
|
|
</activity>
|
2021-07-31 17:48:50 +02:00
|
|
|
|
2020-04-19 02:07:48 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ui.reader.ReaderActivity"
|
2021-07-31 17:48:50 +02:00
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:exported="false">
|
2020-11-21 04:25:24 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.samsung.android.support.REMOTE_ACTION" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data android:name="com.samsung.android.support.REMOTE_ACTION"
|
|
|
|
android:resource="@xml/s_pen_actions"/>
|
|
|
|
</activity>
|
2021-07-31 17:48:50 +02:00
|
|
|
|
2020-02-22 04:58:19 +01:00
|
|
|
<activity
|
2021-05-22 18:39:47 +02:00
|
|
|
android:name=".ui.security.UnlockActivity"
|
2021-07-31 17:48:50 +02:00
|
|
|
android:theme="@style/Theme.Tachiyomi"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2020-01-11 04:22:12 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.webview.WebViewActivity"
|
2021-07-31 17:48:50 +02:00
|
|
|
android:configChanges="uiMode|orientation|screenSize"
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".extension.util.ExtensionInstallActivity"
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2016-12-18 22:56:28 +01:00
|
|
|
<activity
|
2020-02-05 04:14:49 +01:00
|
|
|
android:name=".ui.setting.track.AnilistLoginActivity"
|
2021-07-31 17:48:50 +02:00
|
|
|
android:label="Anilist"
|
|
|
|
android:exported="true">
|
2016-12-18 22:56:28 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2017-01-20 21:18:15 +01:00
|
|
|
|
2016-12-18 22:56:28 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2017-01-20 21:18:15 +01:00
|
|
|
|
2016-12-18 22:56:28 +01:00
|
|
|
<data
|
|
|
|
android:host="anilist-auth"
|
|
|
|
android:scheme="tachiyomi" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2020-12-09 04:19:59 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.setting.track.MyAnimeListLoginActivity"
|
2021-07-31 17:48:50 +02:00
|
|
|
android:label="MyAnimeList"
|
|
|
|
android:exported="true">
|
2020-12-14 23:57:35 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="myanimelist-auth"
|
|
|
|
android:scheme="tachiyomi" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-04-03 10:14:37 +02:00
|
|
|
<activity
|
2020-02-05 04:14:49 +01:00
|
|
|
android:name=".ui.setting.track.ShikimoriLoginActivity"
|
2021-07-31 17:48:50 +02:00
|
|
|
android:label="Shikimori"
|
|
|
|
android:exported="true">
|
2019-04-03 10:14:37 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="shikimori-auth"
|
|
|
|
android:scheme="tachiyomi" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-07-23 12:35:38 +02:00
|
|
|
<activity
|
2020-02-05 04:14:49 +01:00
|
|
|
android:name=".ui.setting.track.BangumiLoginActivity"
|
2021-07-31 17:48:50 +02:00
|
|
|
android:label="Bangumi"
|
|
|
|
android:exported="true">
|
2019-07-23 12:35:38 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="bangumi-auth"
|
|
|
|
android:scheme="tachiyomi" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-04-03 10:14:37 +02:00
|
|
|
|
2017-01-20 21:18:15 +01:00
|
|
|
<receiver
|
|
|
|
android:name=".data.notification.NotificationReceiver"
|
|
|
|
android:exported="false" />
|
2016-09-07 19:44:55 +02:00
|
|
|
|
2022-07-31 17:31:40 +02:00
|
|
|
<receiver
|
|
|
|
android:name=".glance.UpdatesGridGlanceReceiver"
|
|
|
|
android:enabled="@bool/glance_appwidget_available"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="@string/label_recent_updates">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/updates_grid_glance_widget_info" />
|
|
|
|
</receiver>
|
|
|
|
|
2017-01-20 21:18:15 +01:00
|
|
|
<service
|
|
|
|
android:name=".data.library.LibraryUpdateService"
|
|
|
|
android:exported="false" />
|
2016-09-07 19:44:55 +02:00
|
|
|
|
2017-01-20 21:18:15 +01:00
|
|
|
<service
|
|
|
|
android:name=".data.download.DownloadService"
|
|
|
|
android:exported="false" />
|
2016-09-27 00:15:21 +02:00
|
|
|
|
2017-01-20 21:18:15 +01:00
|
|
|
<service
|
2021-10-16 16:21:15 +02:00
|
|
|
android:name=".data.updater.AppUpdateService"
|
2017-01-20 21:18:15 +01:00
|
|
|
android:exported="false" />
|
2016-04-18 00:20:58 +02:00
|
|
|
|
2017-04-04 17:42:17 +02:00
|
|
|
<service
|
|
|
|
android:name=".data.backup.BackupRestoreService"
|
2020-04-18 20:47:22 +02:00
|
|
|
android:exported="false" />
|
2017-04-04 17:42:17 +02:00
|
|
|
|
2021-09-25 20:31:52 +02:00
|
|
|
<service android:name=".extension.util.ExtensionInstallService"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2022-08-14 17:52:46 +02:00
|
|
|
<service
|
|
|
|
android:name="androidx.appcompat.app.AppLocalesMetadataHolderService"
|
|
|
|
android:enabled="false"
|
|
|
|
android:exported="false">
|
|
|
|
<meta-data
|
|
|
|
android:name="autoStoreLocales"
|
|
|
|
android:value="true" />
|
|
|
|
</service>
|
|
|
|
|
2021-07-31 17:48:50 +02:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.provider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/provider_paths" />
|
|
|
|
</provider>
|
|
|
|
|
2021-09-25 20:31:52 +02:00
|
|
|
<provider
|
|
|
|
android:name="rikka.shizuku.ShizukuProvider"
|
|
|
|
android:authorities="${applicationId}.shizuku"
|
|
|
|
android:multiprocess="false"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.INTERACT_ACROSS_USERS_FULL" />
|
|
|
|
|
2022-10-22 05:06:34 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.webkit.WebView.EnableSafeBrowsing"
|
2021-09-12 00:25:35 +02:00
|
|
|
android:value="false" />
|
2022-10-22 05:06:34 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.webkit.WebView.MetricsOptOut"
|
2021-09-12 00:25:35 +02:00
|
|
|
android:value="true" />
|
|
|
|
|
2022-10-22 05:06:34 +02:00
|
|
|
<!-- Disable advertising ID collection for Firebase -->
|
|
|
|
<meta-data
|
|
|
|
android:name="google_analytics_adid_collection_enabled"
|
|
|
|
android:value="false" />
|
|
|
|
|
2015-09-24 17:27:43 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|