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
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
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" />
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.READ_PHONE_STATE"
|
|
|
|
tools:node="remove" />
|
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"
|
2016-04-13 14:08:07 +02:00
|
|
|
android:hardwareAccelerated="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">
|
|
|
|
<activity android:name=".ui.main.MainActivity">
|
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>
|
2017-04-04 17:42:39 +02:00
|
|
|
<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
|
2015-11-14 17:10:55 +01:00
|
|
|
android:name=".ui.reader.ReaderActivity"
|
2017-01-20 21:18:15 +01:00
|
|
|
android:theme="@style/Theme.Reader" />
|
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>
|
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-29 20:48:55 +01:00
|
|
|
<provider
|
|
|
|
android:name="eu.kanade.tachiyomi.util.ZipContentProvider"
|
|
|
|
android:authorities="${applicationId}.zip-provider"
|
2017-01-29 20:51:11 +01:00
|
|
|
android:exported="false" />
|
2017-01-29 20:48:55 +01:00
|
|
|
|
2017-02-08 22:12:00 +01:00
|
|
|
<provider
|
|
|
|
android:name="eu.kanade.tachiyomi.util.RarContentProvider"
|
|
|
|
android:authorities="${applicationId}.rar-provider"
|
|
|
|
android:exported="false" />
|
|
|
|
|
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
|
|
|
|
android:name=".data.updater.UpdateDownloaderService"
|
|
|
|
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"/>
|
|
|
|
|
2016-01-05 15:54:51 +01:00
|
|
|
<meta-data
|
2016-05-10 15:09:44 +02:00
|
|
|
android:name="eu.kanade.tachiyomi.data.glide.AppGlideModule"
|
2016-01-05 15:54:51 +01:00
|
|
|
android:value="GlideModule" />
|
|
|
|
|
2015-09-24 17:27:43 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|