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