2015-09-24 23:27:43 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-01-21 04:18:15 +08:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-10-04 03:15:59 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="eu.kanade.tachiyomi">
|
2015-09-24 23:27:43 +08:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2017-01-21 04:18:15 +08:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
2015-10-03 06:14:40 +08:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2015-11-07 03:22:01 +08:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2017-01-21 04:18:15 +08:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.READ_PHONE_STATE"
|
|
|
|
tools:node="remove" />
|
2016-09-30 00:38:29 +08:00
|
|
|
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
|
2015-09-24 23:27:43 +08:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".App"
|
|
|
|
android:allowBackup="true"
|
2016-04-13 20:08:07 +08:00
|
|
|
android:hardwareAccelerated="true"
|
2015-09-24 23:27:43 +08:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2016-03-26 20:28:22 +08:00
|
|
|
android:largeHeap="true"
|
2017-01-21 04:18:15 +08:00
|
|
|
android:theme="@style/Theme.Tachiyomi">
|
|
|
|
<activity android:name=".ui.main.MainActivity">
|
2015-09-24 23:27:43 +08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2015-09-26 20:25:18 +08:00
|
|
|
<activity
|
2015-11-15 00:10:55 +08:00
|
|
|
android:name=".ui.manga.MangaActivity"
|
2017-01-21 04:18:15 +08:00
|
|
|
android:exported="true"
|
|
|
|
android:parentActivityName=".ui.main.MainActivity" />
|
2015-10-21 06:04:04 +08:00
|
|
|
<activity
|
2015-11-15 00:10:55 +08:00
|
|
|
android:name=".ui.reader.ReaderActivity"
|
2017-01-21 04:18:15 +08:00
|
|
|
android:theme="@style/Theme.Reader" />
|
2015-10-22 01:27:22 +08:00
|
|
|
<activity
|
2015-11-15 02:20:39 +08:00
|
|
|
android:name=".ui.setting.SettingsActivity"
|
2015-11-17 02:33:33 +08:00
|
|
|
android:label="@string/label_settings"
|
2017-01-21 04:18:15 +08:00
|
|
|
android:parentActivityName=".ui.main.MainActivity" />
|
2015-12-30 21:10:31 +08:00
|
|
|
<activity
|
2016-02-24 18:48:21 +08:00
|
|
|
android:name=".ui.category.CategoryActivity"
|
2015-12-30 21:10:31 +08:00
|
|
|
android:label="@string/label_categories"
|
2017-01-21 04:18:15 +08:00
|
|
|
android:parentActivityName=".ui.main.MainActivity" />
|
2015-12-09 02:39:57 +08:00
|
|
|
<activity
|
|
|
|
android:name=".ui.setting.SettingsDownloadsFragment$CustomLayoutPickerActivity"
|
|
|
|
android:label="@string/app_name"
|
2017-01-21 04:18:15 +08:00
|
|
|
android:theme="@style/FilePickerTheme" />
|
2016-12-19 05:56:28 +08:00
|
|
|
<activity
|
|
|
|
android:name=".ui.setting.AnilistLoginActivity"
|
|
|
|
android:label="Anilist">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2017-01-21 04:18:15 +08:00
|
|
|
|
2016-12-19 05:56:28 +08:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2017-01-21 04:18:15 +08:00
|
|
|
|
2016-12-19 05:56:28 +08:00
|
|
|
<data
|
|
|
|
android:host="anilist-auth"
|
|
|
|
android:scheme="tachiyomi" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-01-21 04:18:15 +08:00
|
|
|
<activity
|
|
|
|
android:name=".ui.download.DownloadActivity"
|
|
|
|
android:launchMode="singleTop" />
|
2015-12-09 02:39:57 +08:00
|
|
|
|
2016-10-25 23:34:49 +08:00
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
2016-12-03 20:08:26 +08:00
|
|
|
android:authorities="${applicationId}.provider"
|
2016-10-25 23:34:49 +08:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2017-01-21 04:18:15 +08:00
|
|
|
android:resource="@xml/provider_paths" />
|
2016-10-25 23:34:49 +08:00
|
|
|
</provider>
|
|
|
|
|
2017-01-30 03:48:55 +08:00
|
|
|
<provider
|
|
|
|
android:name="eu.kanade.tachiyomi.util.ZipContentProvider"
|
|
|
|
android:authorities="${applicationId}.zip-provider"
|
2017-01-30 03:51:11 +08:00
|
|
|
android:exported="false" />
|
2017-01-30 03:48:55 +08:00
|
|
|
|
2017-01-21 04:18:15 +08:00
|
|
|
<receiver
|
|
|
|
android:name=".data.notification.NotificationReceiver"
|
|
|
|
android:exported="false" />
|
2016-09-08 01:44:55 +08:00
|
|
|
|
2017-01-21 04:18:15 +08:00
|
|
|
<service
|
|
|
|
android:name=".data.library.LibraryUpdateService"
|
|
|
|
android:exported="false" />
|
2016-09-08 01:44:55 +08:00
|
|
|
|
2017-01-21 04:18:15 +08:00
|
|
|
<service
|
|
|
|
android:name=".data.download.DownloadService"
|
|
|
|
android:exported="false" />
|
2016-09-27 06:15:21 +08:00
|
|
|
|
2017-01-21 04:18:15 +08:00
|
|
|
<service
|
|
|
|
android:name=".data.track.TrackUpdateService"
|
|
|
|
android:exported="false" />
|
|
|
|
<service
|
|
|
|
android:name=".data.updater.UpdateDownloaderService"
|
|
|
|
android:exported="false" />
|
2016-04-18 06:20:58 +08:00
|
|
|
|
2016-01-05 22:54:51 +08:00
|
|
|
<meta-data
|
2016-05-10 21:09:44 +08:00
|
|
|
android:name="eu.kanade.tachiyomi.data.glide.AppGlideModule"
|
2016-01-05 22:54:51 +08:00
|
|
|
android:value="GlideModule" />
|
|
|
|
|
2015-09-24 23:27:43 +08:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|