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"
|
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-12-27 13:24:19 +01:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
2019-12-26 22:01:16 +01:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2016-09-29 18:38:29 +02:00
|
|
|
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
|
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"
|
2019-12-26 22:06:28 +01:00
|
|
|
android:usesCleartextTraffic="true"
|
2015-09-24 17:27:43 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2017-04-04 17:42:39 +02:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2015-09-24 17:27:43 +02:00
|
|
|
android:label="@string/app_name"
|
2016-03-26 13:28:22 +01:00
|
|
|
android:largeHeap="true"
|
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" />
|
|
|
|
<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"/>
|
2017-10-28 14:44:19 +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"
|
|
|
|
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-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" />
|
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
|
2017-12-11 20:01:28 +01:00
|
|
|
android:name=".data.updater.UpdaterService"
|
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.BackupCreateService"
|
|
|
|
android:exported="false"/>
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".data.backup.BackupRestoreService"
|
|
|
|
android:exported="false"/>
|
|
|
|
|
2015-09-24 17:27:43 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|