2015-09-24 17:27:43 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-01-20 21:18:15 +01:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-08-24 18:28:54 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-10-03 21:15:59 +02:00
|
|
|
package="eu.kanade.tachiyomi">
|
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" />
|
2015-10-03 00:14:40 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2015-11-06 20:22:01 +01:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2017-01-20 21:18:15 +01:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2017-12-02 17:10:31 +01:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2019-08-04 16:55:09 +02:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
2016-09-29 18:38:29 +02:00
|
|
|
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
|
2017-08-24 23:11:43 +02:00
|
|
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
2018-07-22 05:16:10 +02:00
|
|
|
<uses-permission android:name="android.permission.GET_TASKS" />
|
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.PACKAGE_USAGE_STATS"
|
2017-05-05 05:38:17 +02:00
|
|
|
tools:ignore="ProtectedPermissions" />
|
2018-03-14 23:39:01 +01:00
|
|
|
<!-- Lock vibrate -->
|
2018-07-22 05:16:10 +02:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2019-04-19 19:12:01 +02:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2015-09-24 17:27:43 +02:00
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:name=".App"
|
|
|
|
|
android:allowBackup="true"
|
2019-04-01 17:14:37 +02:00
|
|
|
android:fullBackupContent="@xml/backup_rules"
|
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"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2019-04-19 19:14:41 +02:00
|
|
|
android:usesCleartextTraffic="true"
|
|
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2017-01-20 21:18:15 +01:00
|
|
|
android:theme="@style/Theme.Tachiyomi">
|
2017-06-17 12:34:46 +02:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.main.MainActivity"
|
2019-04-13 13:09:01 +02:00
|
|
|
android:launchMode="singleTask">
|
2015-09-24 17:27:43 +02:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2018-07-22 05:16:10 +02:00
|
|
|
|
2015-09-24 17:27:43 +02:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
2019-04-03 10:25:52 +02:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
|
|
|
<action android:name="com.google.android.gms.actions.SEARCH_ACTION"/>
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
|
</intent-filter>
|
2019-04-12 18:40:04 +02:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="eu.kanade.tachiyomi.SEARCH" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
|
</intent-filter>
|
2019-04-03 10:25:52 +02:00
|
|
|
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable"/>
|
2018-07-22 05:16:10 +02:00
|
|
|
<!-- suppress AndroidDomInspection -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.app.shortcuts"
|
|
|
|
|
android:resource="@xml/shortcuts" />
|
2015-09-24 17:27:43 +02:00
|
|
|
</activity>
|
2015-10-21 00:04:04 +02:00
|
|
|
<activity
|
2018-09-01 17:12:59 +02:00
|
|
|
android:name=".ui.reader.ReaderActivity" />
|
2015-12-08 19:39:57 +01:00
|
|
|
<activity
|
2017-04-04 17:42:17 +02:00
|
|
|
android:name=".widget.CustomLayoutPickerActivity"
|
2015-12-08 19:39:57 +01:00
|
|
|
android:label="@string/app_name"
|
2017-01-20 21:18:15 +01:00
|
|
|
android:theme="@style/FilePickerTheme" />
|
2016-12-18 22:56:28 +01:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.setting.AnilistLoginActivity"
|
|
|
|
|
android:label="Anilist">
|
|
|
|
|
<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>
|
2019-04-03 10:14:37 +02:00
|
|
|
<activity
|
2019-04-29 18:40:26 +02:00
|
|
|
android:name=".ui.setting.ShikimoriLoginActivity"
|
|
|
|
|
android:label="Shikimori">
|
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
|
|
|
|
|
android:name=".ui.setting.BangumiLoginActivity"
|
|
|
|
|
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 10:14:37 +02:00
|
|
|
|
2018-03-02 18:10:10 +01:00
|
|
|
<activity
|
|
|
|
|
android:name=".extension.util.ExtensionInstallActivity"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
|
2015-12-08 19:39:57 +01:00
|
|
|
|
2016-10-25 17:34:49 +02:00
|
|
|
<provider
|
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
2016-12-03 13:08:26 +01:00
|
|
|
android:authorities="${applicationId}.provider"
|
2016-10-25 17:34:49 +02:00
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2017-01-20 21:18:15 +01:00
|
|
|
android:resource="@xml/provider_paths" />
|
2016-10-25 17:34:49 +02:00
|
|
|
</provider>
|
2017-02-08 22:12:00 +01: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
|
|
|
|
2017-01-20 21:18:15 +01:00
|
|
|
<service
|
|
|
|
|
android:name=".data.library.LibraryUpdateService"
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
<service
|
|
|
|
|
android:name=".data.download.DownloadService"
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
<service
|
2017-12-11 20:01:28 +01:00
|
|
|
android:name=".data.updater.UpdaterService"
|
2017-01-20 21:18:15 +01:00
|
|
|
android:exported="false" />
|
2017-04-04 17:42:17 +02:00
|
|
|
<service
|
|
|
|
|
android:name=".data.backup.BackupCreateService"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:exported="false" />
|
2017-04-04 17:42:17 +02:00
|
|
|
<service
|
|
|
|
|
android:name=".data.backup.BackupRestoreService"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:exported="false" />
|
2017-04-04 17:42:17 +02:00
|
|
|
|
2017-05-05 05:38:17 +02:00
|
|
|
<!-- EH -->
|
2019-04-18 23:40:13 +02:00
|
|
|
<service
|
|
|
|
|
android:name="exh.eh.EHentaiUpdateWorker"
|
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE"
|
|
|
|
|
android:exported="true" />
|
2017-05-05 05:38:17 +02:00
|
|
|
<activity
|
|
|
|
|
android:name="exh.ui.intercept.InterceptActivity"
|
2018-07-21 21:26:14 +02:00
|
|
|
android:label="TachiyomiEH"
|
2019-04-06 13:35:36 +02:00
|
|
|
android:theme="@style/Theme.EHActivity">
|
2017-05-05 05:38:17 +02:00
|
|
|
<intent-filter>
|
2018-07-22 05:16:10 +02:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2017-05-05 05:38:17 +02:00
|
|
|
|
2018-07-22 05:16:10 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2017-05-05 05:38:17 +02:00
|
|
|
|
2019-08-08 19:31:47 +02:00
|
|
|
<!-- EH -->
|
2017-05-05 05:38:17 +02:00
|
|
|
<data
|
|
|
|
|
android:host="g.e-hentai.org"
|
|
|
|
|
android:pathPrefix="/g/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="http" />
|
2017-05-05 05:38:17 +02:00
|
|
|
<data
|
|
|
|
|
android:host="g.e-hentai.org"
|
|
|
|
|
android:pathPrefix="/g/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="https" />
|
2017-05-05 05:38:17 +02:00
|
|
|
<data
|
|
|
|
|
android:host="e-hentai.org"
|
|
|
|
|
android:pathPrefix="/g/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="http" />
|
2017-05-05 05:38:17 +02:00
|
|
|
<data
|
|
|
|
|
android:host="e-hentai.org"
|
|
|
|
|
android:pathPrefix="/g/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="https" />
|
2019-08-08 19:31:47 +02:00
|
|
|
|
|
|
|
|
<!-- EXH -->
|
2017-05-05 05:38:17 +02:00
|
|
|
<data
|
|
|
|
|
android:host="exhentai.org"
|
|
|
|
|
android:pathPrefix="/g/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="http" />
|
2017-05-05 05:38:17 +02:00
|
|
|
<data
|
|
|
|
|
android:host="exhentai.org"
|
|
|
|
|
android:pathPrefix="/g/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="https" />
|
2019-08-08 19:31:47 +02:00
|
|
|
|
|
|
|
|
<!-- nhentai -->
|
2017-08-25 23:31:38 +02:00
|
|
|
<data
|
|
|
|
|
android:host="nhentai.net"
|
|
|
|
|
android:pathPrefix="/g/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="http" />
|
2017-08-25 23:31:38 +02:00
|
|
|
<data
|
|
|
|
|
android:host="nhentai.net"
|
|
|
|
|
android:pathPrefix="/g/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="https" />
|
2019-08-08 19:31:47 +02:00
|
|
|
|
|
|
|
|
<!-- Perv Eden -->
|
2017-11-30 02:35:10 +01:00
|
|
|
<data
|
2017-12-08 04:25:27 +01:00
|
|
|
android:host="www.perveden.com"
|
2018-01-29 21:39:34 +01:00
|
|
|
android:pathPattern="/.*/.*-manga/.*"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="http" />
|
2017-12-08 04:25:27 +01:00
|
|
|
<data
|
|
|
|
|
android:host="www.perveden.com"
|
2018-01-29 21:39:34 +01:00
|
|
|
android:pathPattern="/.*/.*-manga/.*"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="https" />
|
2019-08-08 19:31:47 +02:00
|
|
|
|
|
|
|
|
<!-- Hentai Cafe -->
|
2017-12-08 04:25:27 +01:00
|
|
|
<data
|
|
|
|
|
android:host="hentai.cafe"
|
2018-01-29 21:39:34 +01:00
|
|
|
android:pathPattern="/.*/.*"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="http" />
|
2017-12-08 04:25:27 +01:00
|
|
|
<data
|
|
|
|
|
android:host="hentai.cafe"
|
2018-01-29 21:39:34 +01:00
|
|
|
android:pathPattern="/.*/.*"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="https" />
|
2019-08-08 19:31:47 +02:00
|
|
|
|
|
|
|
|
<!-- Tsumino -->
|
2017-12-08 04:25:27 +01:00
|
|
|
<data
|
|
|
|
|
android:host="www.tsumino.com"
|
2018-01-29 21:39:34 +01:00
|
|
|
android:pathPrefix="/Book/Info/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="http" />
|
2017-12-08 04:25:27 +01:00
|
|
|
<data
|
|
|
|
|
android:host="www.tsumino.com"
|
2018-01-29 21:39:34 +01:00
|
|
|
android:pathPrefix="/Book/Info/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="https" />
|
2018-01-29 21:39:34 +01:00
|
|
|
<data
|
|
|
|
|
android:host="www.tsumino.com"
|
|
|
|
|
android:pathPrefix="/Read/View/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="http" />
|
2018-01-29 21:39:34 +01:00
|
|
|
<data
|
|
|
|
|
android:host="www.tsumino.com"
|
|
|
|
|
android:pathPrefix="/Read/View/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="https" />
|
2019-08-08 19:31:47 +02:00
|
|
|
|
|
|
|
|
<!-- Hitomi.la -->
|
2018-04-15 20:35:00 +02:00
|
|
|
<data
|
|
|
|
|
android:host="hitomi.la"
|
|
|
|
|
android:pathPrefix="/galleries/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="http" />
|
2018-04-15 20:35:00 +02:00
|
|
|
<data
|
|
|
|
|
android:host="hitomi.la"
|
|
|
|
|
android:pathPrefix="/reader/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="http" />
|
2018-04-15 20:35:00 +02:00
|
|
|
<data
|
|
|
|
|
android:host="hitomi.la"
|
|
|
|
|
android:pathPrefix="/galleries/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="https" />
|
2018-04-15 20:35:00 +02:00
|
|
|
<data
|
|
|
|
|
android:host="hitomi.la"
|
|
|
|
|
android:pathPrefix="/reader/"
|
2018-07-22 05:16:10 +02:00
|
|
|
android:scheme="https" />
|
2019-08-08 19:31:47 +02:00
|
|
|
|
|
|
|
|
<!-- Pururin.io -->
|
|
|
|
|
<data
|
|
|
|
|
android:host="pururin.io"
|
|
|
|
|
android:pathPrefix="/gallery/"
|
|
|
|
|
android:scheme="http" />
|
|
|
|
|
<data
|
|
|
|
|
android:host="pururin.io"
|
|
|
|
|
android:pathPrefix="/gallery/"
|
|
|
|
|
android:scheme="https" />
|
2017-05-05 05:38:17 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2018-03-14 17:22:28 +01:00
|
|
|
<activity
|
2019-04-19 08:46:34 +02:00
|
|
|
android:name="exh.ui.captcha.BrowserActionActivity"
|
2019-04-06 13:35:36 +02:00
|
|
|
android:theme="@style/Theme.EHActivity" />
|
2019-04-18 23:40:13 +02:00
|
|
|
<activity android:name="exh.ui.webview.WebViewActivity" />
|
2015-09-24 17:27:43 +02:00
|
|
|
</application>
|
|
|
|
|
|
2018-07-22 05:16:10 +02:00
|
|
|
</manifest>
|