2015-09-24 11:27:43 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-01-20 15:18:15 -05:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-10-03 15:15:59 -04:00
|
|
|
package="eu.kanade.tachiyomi">
|
2015-09-24 11:27:43 -04:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2017-01-20 15:18:15 -05:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
2015-10-02 18:14:40 -04:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2015-11-06 14:22:01 -05:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2017-01-20 15:18:15 -05:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2020-03-07 15:51:46 -05:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
2017-12-02 11:10:31 -05:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2019-12-27 07:24:19 -05:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
2019-12-26 16:01:16 -05:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2016-09-29 12:38:29 -04:00
|
|
|
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
|
2015-09-24 11:27:43 -04:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".App"
|
|
|
|
android:allowBackup="true"
|
2019-04-01 11:14:37 -04:00
|
|
|
android:fullBackupContent="@xml/backup_rules"
|
2016-04-13 08:08:07 -04:00
|
|
|
android:hardwareAccelerated="true"
|
2020-04-18 14:47:22 -04:00
|
|
|
android:hasFragileUserData="true"
|
2015-09-24 11:27:43 -04:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2016-03-26 08:28:22 -04:00
|
|
|
android:largeHeap="true"
|
2020-04-18 14:47:22 -04:00
|
|
|
android:requestLegacyExternalStorage="true"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:theme="@style/Theme.Tachiyomi.Light"
|
|
|
|
android:usesCleartextTraffic="true">
|
2017-06-17 06:34:46 -04:00
|
|
|
<activity
|
|
|
|
android:name=".ui.main.MainActivity"
|
2020-01-28 22:15:15 -05:00
|
|
|
android:launchMode="singleTop"
|
2020-01-08 22:38:19 -05:00
|
|
|
android:theme="@style/Theme.Splash">
|
2015-09-24 11:27:43 -04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2020-01-28 22:15:15 -05:00
|
|
|
<!--suppress AndroidDomInspection -->
|
2020-04-18 14:47:22 -04:00
|
|
|
<meta-data
|
|
|
|
android:name="android.app.shortcuts"
|
|
|
|
android:resource="@xml/shortcuts" />
|
2020-01-28 22:15:15 -05:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".ui.main.DeepLinkActivity"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay">
|
2019-04-03 04:25:52 -04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
2020-04-18 14:47:22 -04:00
|
|
|
<action android:name="com.google.android.gms.actions.SEARCH_ACTION" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-04-03 04:25:52 -04:00
|
|
|
</intent-filter>
|
2019-04-12 12:40:04 -04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="eu.kanade.tachiyomi.SEARCH" />
|
2020-04-18 14:47:22 -04:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-04-12 12:40:04 -04:00
|
|
|
</intent-filter>
|
2020-04-18 14:47:22 -04:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.searchable"
|
|
|
|
android:resource="@xml/searchable" />
|
2015-09-24 11:27:43 -04:00
|
|
|
</activity>
|
2020-04-18 20:07:48 -04:00
|
|
|
<activity
|
|
|
|
android:name=".ui.reader.ReaderActivity"
|
|
|
|
android:launchMode="singleTask" />
|
2020-02-21 22:58:19 -05:00
|
|
|
<activity
|
|
|
|
android:name=".ui.security.BiometricUnlockActivity"
|
|
|
|
android:theme="@style/Theme.Splash" />
|
2020-01-10 22:22:12 -05:00
|
|
|
<activity
|
|
|
|
android:name=".ui.webview.WebViewActivity"
|
|
|
|
android:configChanges="uiMode|orientation|screenSize" />
|
2015-12-08 13:39:57 -05:00
|
|
|
<activity
|
2017-04-04 11:42:17 -04:00
|
|
|
android:name=".widget.CustomLayoutPickerActivity"
|
2015-12-08 13:39:57 -05:00
|
|
|
android:label="@string/app_name"
|
2017-01-20 15:18:15 -05:00
|
|
|
android:theme="@style/FilePickerTheme" />
|
2016-12-18 16:56:28 -05:00
|
|
|
<activity
|
2020-02-04 22:14:49 -05:00
|
|
|
android:name=".ui.setting.track.AnilistLoginActivity"
|
2016-12-18 16:56:28 -05:00
|
|
|
android:label="Anilist">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2017-01-20 15:18:15 -05:00
|
|
|
|
2016-12-18 16:56:28 -05:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2017-01-20 15:18:15 -05:00
|
|
|
|
2016-12-18 16:56:28 -05:00
|
|
|
<data
|
|
|
|
android:host="anilist-auth"
|
|
|
|
android:scheme="tachiyomi" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-04-03 04:14:37 -04:00
|
|
|
<activity
|
2020-02-04 22:14:49 -05:00
|
|
|
android:name=".ui.setting.track.ShikimoriLoginActivity"
|
2019-04-29 12:40:26 -04:00
|
|
|
android:label="Shikimori">
|
2019-04-03 04:14:37 -04: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 06:35:38 -04:00
|
|
|
<activity
|
2020-02-04 22:14:49 -05:00
|
|
|
android:name=".ui.setting.track.BangumiLoginActivity"
|
2019-07-23 06:35:38 -04:00
|
|
|
android:label="Bangumi">
|
|
|
|
<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 04:14:37 -04:00
|
|
|
|
2018-03-02 12:10:10 -05:00
|
|
|
<activity
|
|
|
|
android:name=".extension.util.ExtensionInstallActivity"
|
2020-04-18 14:47:22 -04:00
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
|
2015-12-08 13:39:57 -05:00
|
|
|
|
2020-04-18 22:24:55 -04:00
|
|
|
<activity
|
|
|
|
android:name="com.google.android.gms.oss.licenses.OssLicensesMenuActivity"
|
|
|
|
android:theme="@style/Theme.MaterialComponents" />
|
|
|
|
<activity
|
|
|
|
android:name="com.google.android.gms.oss.licenses.OssLicensesActivity"
|
|
|
|
android:theme="@style/Theme.MaterialComponents" />
|
|
|
|
|
2016-10-25 11:34:49 -04:00
|
|
|
<provider
|
2020-01-05 11:29:27 -05:00
|
|
|
android:name="androidx.core.content.FileProvider"
|
2016-12-03 07:08:26 -05:00
|
|
|
android:authorities="${applicationId}.provider"
|
2016-10-25 11:34:49 -04:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2017-01-20 15:18:15 -05:00
|
|
|
android:resource="@xml/provider_paths" />
|
2016-10-25 11:34:49 -04:00
|
|
|
</provider>
|
|
|
|
|
2017-01-20 15:18:15 -05:00
|
|
|
<receiver
|
|
|
|
android:name=".data.notification.NotificationReceiver"
|
|
|
|
android:exported="false" />
|
2016-09-07 13:44:55 -04:00
|
|
|
|
2017-01-20 15:18:15 -05:00
|
|
|
<service
|
|
|
|
android:name=".data.library.LibraryUpdateService"
|
|
|
|
android:exported="false" />
|
2016-09-07 13:44:55 -04:00
|
|
|
|
2017-01-20 15:18:15 -05:00
|
|
|
<service
|
|
|
|
android:name=".data.download.DownloadService"
|
|
|
|
android:exported="false" />
|
2016-09-26 18:15:21 -04:00
|
|
|
|
2017-01-20 15:18:15 -05:00
|
|
|
<service
|
2017-12-11 14:01:28 -05:00
|
|
|
android:name=".data.updater.UpdaterService"
|
2017-01-20 15:18:15 -05:00
|
|
|
android:exported="false" />
|
2016-04-17 18:20:58 -04:00
|
|
|
|
2017-04-04 11:42:17 -04:00
|
|
|
<service
|
|
|
|
android:name=".data.backup.BackupCreateService"
|
2020-04-18 14:47:22 -04:00
|
|
|
android:exported="false" />
|
2017-04-04 11:42:17 -04:00
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".data.backup.BackupRestoreService"
|
2020-04-18 14:47:22 -04:00
|
|
|
android:exported="false" />
|
2017-04-04 11:42:17 -04:00
|
|
|
|
2015-09-24 11:27:43 -04:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|