1018 lines
41 KiB
XML
1018 lines
41 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<manifest
|
||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
xmlns:tools="http://schemas.android.com/tools">
|
||
|
||
<uses-permission android:name="android.permission.INTERNET" />
|
||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||
<uses-permission android:name="android.permission.VIBRATE" />
|
||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
||
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
||
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
|
||
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
|
||
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
|
||
<uses-permission android:name="android.permission.READ_SYNC_STATS" />
|
||
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
|
||
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
|
||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
|
||
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
||
<uses-permission
|
||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||
android:maxSdkVersion="29" />
|
||
<uses-permission
|
||
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
|
||
tools:ignore="ScopedStorage" />
|
||
|
||
<queries>
|
||
<intent>
|
||
<action android:name="android.intent.action.PROCESS_TEXT" />
|
||
<data android:mimeType="text/plain" />
|
||
</intent>
|
||
<intent>
|
||
<action android:name="android.speech.action.RECOGNIZE_SPEECH" />
|
||
</intent>
|
||
</queries>
|
||
|
||
<application
|
||
android:name="org.koitharu.kotatsu.KotatsuApp"
|
||
android:allowBackup="true"
|
||
android:backupAgent="org.koitharu.kotatsu.settings.backup.AppBackupAgent"
|
||
android:dataExtractionRules="@xml/backup_rules"
|
||
android:enableOnBackInvokedCallback="true"
|
||
android:fullBackupContent="@xml/backup_content"
|
||
android:fullBackupOnly="true"
|
||
android:icon="@mipmap/ic_launcher"
|
||
android:label="@string/app_name"
|
||
android:largeHeap="true"
|
||
android:networkSecurityConfig="@xml/network_security_config"
|
||
android:requestLegacyExternalStorage="true"
|
||
android:roundIcon="@mipmap/ic_launcher_round"
|
||
android:supportsRtl="true"
|
||
android:theme="@style/Theme.Kotatsu"
|
||
tools:ignore="UnusedAttribute">
|
||
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.main.ui.MainActivity"
|
||
android:exported="true">
|
||
<intent-filter>
|
||
<action android:name="android.intent.action.MAIN" />
|
||
<category android:name="android.intent.category.LAUNCHER" />
|
||
</intent-filter>
|
||
<meta-data
|
||
android:name="android.app.default_searchable"
|
||
android:value="org.koitharu.kotatsu.ui.search.SearchActivity" />
|
||
</activity>
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.details.ui.DetailsActivity"
|
||
android:exported="true">
|
||
<intent-filter>
|
||
<action android:name="${applicationId}.action.VIEW_MANGA" />
|
||
</intent-filter>
|
||
<intent-filter android:autoVerify="true">
|
||
<action android:name="android.intent.action.VIEW" />
|
||
|
||
<category android:name="android.intent.category.DEFAULT" />
|
||
<category android:name="android.intent.category.BROWSABLE" />
|
||
|
||
<data android:scheme="http" />
|
||
<data android:scheme="https" />
|
||
<data android:host="kotatsu.app" />
|
||
<data android:path="/manga" />
|
||
</intent-filter>
|
||
<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:scheme="kotatsu" />
|
||
<data android:host="manga" />
|
||
<data android:host="kotatsu.app" />
|
||
</intent-filter>
|
||
</activity>
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.reader.ui.ReaderActivity"
|
||
android:exported="true">
|
||
<intent-filter>
|
||
<action android:name="${applicationId}.action.READ_MANGA" />
|
||
</intent-filter>
|
||
</activity>
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.search.ui.SearchActivity"
|
||
android:label="@string/search" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.search.ui.MangaListActivity"
|
||
android:exported="true"
|
||
android:label="@string/manga_list">
|
||
<intent-filter>
|
||
<action android:name="${applicationId}.action.EXPLORE_MANGA" />
|
||
</intent-filter>
|
||
</activity>
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.history.ui.HistoryActivity"
|
||
android:label="@string/history" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.tracker.ui.updates.UpdatesActivity"
|
||
android:label="@string/updates" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.favourites.ui.FavouritesActivity"
|
||
android:label="@string/favourites" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.bookmarks.ui.BookmarksActivity"
|
||
android:label="@string/bookmarks" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.suggestions.ui.SuggestionsActivity"
|
||
android:label="@string/suggestions" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.details.ui.related.RelatedMangaActivity"
|
||
android:label="@string/related_manga" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.settings.SettingsActivity"
|
||
android:exported="true"
|
||
android:label="@string/settings">
|
||
<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:scheme="kotatsu" />
|
||
<data android:host="about" />
|
||
<data android:host="sync-settings" />
|
||
</intent-filter>
|
||
</activity>
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.settings.storage.directories.MangaDirectoriesActivity"
|
||
android:label="@string/local_manga_directories" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.browser.BrowserActivity"
|
||
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
|
||
android:windowSoftInputMode="adjustResize" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.browser.cloudflare.CloudFlareActivity"
|
||
android:autoRemoveFromRecents="true"
|
||
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
|
||
android:windowSoftInputMode="adjustResize" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.settings.sources.auth.SourceAuthActivity"
|
||
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
|
||
android:windowSoftInputMode="adjustResize" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.favourites.ui.categories.FavouriteCategoriesActivity"
|
||
android:label="@string/manage_categories" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.widget.shelf.ShelfWidgetConfigActivity"
|
||
android:exported="true"
|
||
android:label="@string/manga_shelf">
|
||
<intent-filter>
|
||
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
||
</intent-filter>
|
||
</activity>
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.widget.recent.RecentWidgetConfigActivity"
|
||
android:exported="true"
|
||
android:label="@string/recent_manga">
|
||
<intent-filter>
|
||
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
||
</intent-filter>
|
||
</activity>
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.search.ui.multi.MultiSearchActivity"
|
||
android:label="@string/search" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.main.ui.protect.ProtectActivity"
|
||
android:noHistory="true"
|
||
android:windowSoftInputMode="adjustResize" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.settings.protect.ProtectSetupActivity"
|
||
android:windowSoftInputMode="adjustResize" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.download.ui.list.DownloadsActivity"
|
||
android:label="@string/downloads"
|
||
android:launchMode="singleTop" />
|
||
<activity android:name="org.koitharu.kotatsu.image.ui.ImageActivity" />
|
||
<activity android:name="org.koitharu.kotatsu.favourites.ui.categories.edit.FavouritesCategoryEditActivity" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.sync.ui.SyncAuthActivity"
|
||
android:label="@string/sync" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.reader.ui.colorfilter.ColorFilterConfigActivity"
|
||
android:label="@string/color_correction" />
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.scrobbling.common.ui.config.ScrobblerConfigActivity"
|
||
android:exported="true"
|
||
android:label="@string/settings"
|
||
android:launchMode="singleTop">
|
||
|
||
<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:scheme="kotatsu" />
|
||
<data android:host="shikimori-auth" />
|
||
<data android:host="anilist-auth" />
|
||
<data android:host="mal-auth" />
|
||
</intent-filter>
|
||
|
||
</activity>
|
||
<activity
|
||
android:name="org.koitharu.kotatsu.settings.sources.catalog.SourcesCatalogActivity"
|
||
android:label="@string/sources_catalog" />
|
||
|
||
<service
|
||
android:name="androidx.work.impl.foreground.SystemForegroundService"
|
||
android:foregroundServiceType="dataSync"
|
||
tools:node="merge" />
|
||
<service
|
||
android:name="org.koitharu.kotatsu.local.ui.LocalChaptersRemoveService"
|
||
android:foregroundServiceType="dataSync" />
|
||
<service
|
||
android:name="org.koitharu.kotatsu.widget.shelf.ShelfWidgetService"
|
||
android:permission="android.permission.BIND_REMOTEVIEWS" />
|
||
<service
|
||
android:name="org.koitharu.kotatsu.widget.recent.RecentWidgetService"
|
||
android:permission="android.permission.BIND_REMOTEVIEWS" />
|
||
<service
|
||
android:name="org.koitharu.kotatsu.sync.ui.SyncAuthenticatorService"
|
||
android:exported="true"
|
||
tools:ignore="ExportedService">
|
||
<intent-filter>
|
||
<action android:name="android.accounts.AccountAuthenticator" />
|
||
</intent-filter>
|
||
<meta-data
|
||
android:name="android.accounts.AccountAuthenticator"
|
||
android:resource="@xml/authenticator_sync" />
|
||
</service>
|
||
<service
|
||
android:name="org.koitharu.kotatsu.sync.ui.favourites.FavouritesSyncService"
|
||
android:exported="false"
|
||
android:label="@string/favourites">
|
||
<intent-filter>
|
||
<action android:name="android.content.SyncAdapter" />
|
||
</intent-filter>
|
||
<meta-data
|
||
android:name="android.content.SyncAdapter"
|
||
android:resource="@xml/sync_favourites" />
|
||
</service>
|
||
<service
|
||
android:name="org.koitharu.kotatsu.sync.ui.history.HistorySyncService"
|
||
android:exported="false"
|
||
android:label="@string/history">
|
||
<intent-filter>
|
||
<action android:name="android.content.SyncAdapter" />
|
||
</intent-filter>
|
||
<meta-data
|
||
android:name="android.content.SyncAdapter"
|
||
android:resource="@xml/sync_history" />
|
||
</service>
|
||
<service
|
||
android:name="org.koitharu.kotatsu.details.service.MangaPrefetchService"
|
||
android:exported="false" />
|
||
|
||
<provider
|
||
android:name="org.koitharu.kotatsu.search.ui.MangaSuggestionsProvider"
|
||
android:authorities="${applicationId}.MangaSuggestionsProvider"
|
||
android:exported="false" />
|
||
<provider
|
||
android:name="androidx.core.content.FileProvider"
|
||
android:authorities="${applicationId}.files"
|
||
android:exported="false"
|
||
android:grantUriPermissions="true">
|
||
<meta-data
|
||
android:name="android.support.FILE_PROVIDER_PATHS"
|
||
android:resource="@xml/filepaths" />
|
||
</provider>
|
||
<provider
|
||
android:name="org.koitharu.kotatsu.sync.ui.favourites.FavouritesSyncProvider"
|
||
android:authorities="@string/sync_authority_favourites"
|
||
android:exported="false"
|
||
android:label="@string/favourites"
|
||
android:syncable="true" />
|
||
<provider
|
||
android:name="org.koitharu.kotatsu.sync.ui.history.HistorySyncProvider"
|
||
android:authorities="@string/sync_authority_history"
|
||
android:exported="false"
|
||
android:label="@string/history"
|
||
android:syncable="true" />
|
||
<provider
|
||
android:name="androidx.startup.InitializationProvider"
|
||
android:authorities="${applicationId}.androidx-startup"
|
||
android:exported="false"
|
||
tools:node="remove">
|
||
<meta-data
|
||
android:name="androidx.work.WorkManagerInitializer"
|
||
android:value="androidx.startup"
|
||
tools:node="remove" />
|
||
</provider>
|
||
|
||
<receiver
|
||
android:name="org.koitharu.kotatsu.widget.shelf.ShelfWidgetProvider"
|
||
android:exported="true"
|
||
android:label="@string/manga_shelf">
|
||
<intent-filter>
|
||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||
</intent-filter>
|
||
<meta-data
|
||
android:name="android.appwidget.provider"
|
||
android:resource="@xml/widget_shelf" />
|
||
</receiver>
|
||
<receiver
|
||
android:name="org.koitharu.kotatsu.widget.recent.RecentWidgetProvider"
|
||
android:exported="true"
|
||
android:label="@string/recent_manga">
|
||
<intent-filter>
|
||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||
</intent-filter>
|
||
<meta-data
|
||
android:name="android.appwidget.provider"
|
||
android:resource="@xml/widget_recent" />
|
||
</receiver>
|
||
<receiver
|
||
android:name="org.koitharu.kotatsu.settings.about.UpdateDownloadReceiver"
|
||
android:exported="true">
|
||
<intent-filter>
|
||
<action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
|
||
</intent-filter>
|
||
</receiver>
|
||
<receiver
|
||
android:name="org.koitharu.kotatsu.core.ErrorReporterReceiver"
|
||
android:exported="false">
|
||
<intent-filter>
|
||
<action android:name="${applicationId}.action.REPORT_ERROR" />
|
||
</intent-filter>
|
||
</receiver>
|
||
|
||
<meta-data
|
||
android:name="android.webkit.WebView.EnableSafeBrowsing"
|
||
android:value="false" />
|
||
<meta-data
|
||
android:name="android.webkit.WebView.MetricsOptOut"
|
||
android:value="true" />
|
||
<meta-data
|
||
android:name="com.samsung.android.icon_container.has_icon_container"
|
||
android:value="@bool/com_samsung_android_icon_container_has_icon_container" />
|
||
|
||
<activity-alias
|
||
android:name="org.koitharu.kotatsu.details.ui.DetailsBYLinkActivity"
|
||
android:exported="true"
|
||
android:targetActivity="org.koitharu.kotatsu.details.ui.DetailsActivity">
|
||
|
||
<intent-filter android:autoVerify="false">
|
||
<action android:name="android.intent.action.VIEW" />
|
||
|
||
<category android:name="android.intent.category.DEFAULT" />
|
||
<category android:name="android.intent.category.BROWSABLE" />
|
||
|
||
<data android:scheme="http" />
|
||
<data android:scheme="https" />
|
||
<data android:host="1stkissmanga.me" />
|
||
<data android:host="3asq.org" />
|
||
<data android:host="18porncomic.com" />
|
||
<data android:host="212.32.226.234" />
|
||
<data android:host="247manga.com" />
|
||
<data android:host="365manga.com" />
|
||
<data android:host="2023.allhen.online" />
|
||
<data android:host="adultwebtoon.com" />
|
||
<data android:host="afroditscans.com" />
|
||
<data android:host="ainzscans.site" />
|
||
<data android:host="aiyumanga.com" />
|
||
<data android:host="alceascan.my.id" />
|
||
<data android:host="allporncomic.com" />
|
||
<data android:host="anibel.net" />
|
||
<data android:host="anigliscans.com" />
|
||
<data android:host="anikiga.com" />
|
||
<data android:host="animaregia.net" />
|
||
<data android:host="anisamanga.com" />
|
||
<data android:host="anshscans.org" />
|
||
<data android:host="apenasmaisumyaoi.com" />
|
||
<data android:host="apollcomics.com" />
|
||
<data android:host="aquamanga.com" />
|
||
<data android:host="arabtoons.net" />
|
||
<data android:host="araznovel.com" />
|
||
<data android:host="arcanescans.com" />
|
||
<data android:host="arenascans.net" />
|
||
<data android:host="arthurscan.xyz" />
|
||
<data android:host="astral-manga.fr" />
|
||
<data android:host="astrallibrary.net" />
|
||
<data android:host="astrumscans.xyz" />
|
||
<data android:host="asura.nacm.xyz" />
|
||
<data android:host="asurascanstr.com" />
|
||
<data android:host="athenafansub.com" />
|
||
<data android:host="ayatoon.com" />
|
||
<data android:host="azoranov.com" />
|
||
<data android:host="azuremanga.com" />
|
||
<data android:host="babeltoon.com" />
|
||
<data android:host="bakai.org" />
|
||
<data android:host="bakaman.net" />
|
||
<data android:host="bakamh.com" />
|
||
<data android:host="banana-scan.com" />
|
||
<data android:host="bato.to" />
|
||
<data android:host="batocomic.com" />
|
||
<data android:host="batocomic.net" />
|
||
<data android:host="batocomic.org" />
|
||
<data android:host="batotoo.com" />
|
||
<data android:host="batotwo.com" />
|
||
<data android:host="battwo.com" />
|
||
<data android:host="beast-scans.com" />
|
||
<data android:host="beehentai.com" />
|
||
<data android:host="bentomanga.com" />
|
||
<data android:host="bestmanga.club" />
|
||
<data android:host="bestmanhua.com" />
|
||
<data android:host="bibimanga.com" />
|
||
<data android:host="birdmanga.com" />
|
||
<data android:host="birdtoon.net" />
|
||
<data android:host="blogmanga.net" />
|
||
<data android:host="blogtruyenmoi.com" />
|
||
<data android:host="bokugents.com" />
|
||
<data android:host="boosei.net" />
|
||
<data android:host="boyslove.me" />
|
||
<data android:host="br.atlantisscan.com" />
|
||
<data android:host="br.ninemanga.com" />
|
||
<data android:host="cabaredowatame.site" />
|
||
<data android:host="cafecomyaoi.com.br" />
|
||
<data android:host="carteldemanhwas.com" />
|
||
<data android:host="cat300.com" />
|
||
<data android:host="cerisescans.com" />
|
||
<data android:host="chap.mangairo.com" />
|
||
<data android:host="chapmanganato.com" />
|
||
<data android:host="chapmanganato.com" />
|
||
<data android:host="cizgiromanarsivi.com" />
|
||
<data android:host="cmreader.info" />
|
||
<data android:host="cocorip.net" />
|
||
<data android:host="coffeemanga.io" />
|
||
<data android:host="coloredmanga.com" />
|
||
<data android:host="comick.app" />
|
||
<data android:host="comiko.net" />
|
||
<data android:host="comiko.org" />
|
||
<data android:host="copypastescan.xyz" />
|
||
<data android:host="cosmicscans.com" />
|
||
<data android:host="daprob.com" />
|
||
<data android:host="darkscans.com" />
|
||
<data android:host="de.ninemanga.com" />
|
||
<data android:host="desu.me" />
|
||
<data android:host="diamondfansub.com" />
|
||
<data android:host="dojing.net" />
|
||
<data android:host="dokkomanga.com" />
|
||
<data android:host="dokkomanga.com" />
|
||
<data android:host="doujin69.com" />
|
||
<data android:host="doujindesu.rip" />
|
||
<data android:host="doujinhentai.net" />
|
||
<data android:host="dragontea.ink" />
|
||
<data android:host="dragontranslation.net" />
|
||
<data android:host="drakescans.com" />
|
||
<data android:host="dto.to" />
|
||
<data android:host="duckmanga.com" />
|
||
<data android:host="duniakomik.id" />
|
||
<data android:host="dynasty-scans.com" />
|
||
<data android:host="e-hentai.org" />
|
||
<data android:host="elarcpage.com" />
|
||
<data android:host="en.leviatanscans.com" />
|
||
<data android:host="epsilonscan.fr" />
|
||
<data android:host="es.ninemanga.com" />
|
||
<data android:host="esomanga.com" />
|
||
<data android:host="exhentai.org" />
|
||
<data android:host="falconmanga.com" />
|
||
<data android:host="fbsquads.com" />
|
||
<data android:host="finalscans.com" />
|
||
<data android:host="flamescans.org" />
|
||
<data android:host="foxwhite.com.br" />
|
||
<data android:host="fr-scan.cc" />
|
||
<data android:host="fr.ninemanga.com" />
|
||
<data android:host="franxxmangas.net" />
|
||
<data android:host="freakscans.com" />
|
||
<data android:host="freemanga.me" />
|
||
<data android:host="freemangatop.com" />
|
||
<data android:host="freewebtooncoins.com" />
|
||
<data android:host="frscans.com" />
|
||
<data android:host="furyosociety.com" />
|
||
<data android:host="galaxymanga.org" />
|
||
<data android:host="gatemanga.com" />
|
||
<data android:host="gdscans.com" />
|
||
<data android:host="gekkou.com.br" />
|
||
<data android:host="glorymanga.com" />
|
||
<data android:host="goldenmanga.top" />
|
||
<data android:host="golgebahcesi.com" />
|
||
<data android:host="gooffansub.com" />
|
||
<data android:host="gourmetscans.net" />
|
||
<data android:host="grabber.zone" />
|
||
<data android:host="gremorymangas.com" />
|
||
<data android:host="guimah.com" />
|
||
<data android:host="guncelmanga.net" />
|
||
<data android:host="h.mangabat.com" />
|
||
<data android:host="hachiraw.com" />
|
||
<data android:host="harimanga.com" />
|
||
<data android:host="hayalistic.com" />
|
||
<data android:host="hensekai.com" />
|
||
<data android:host="hentai3z.cc" />
|
||
<data android:host="hentai3z.xyz" />
|
||
<data android:host="hentai4free.net" />
|
||
<data android:host="hentai20.io" />
|
||
<data android:host="hentai.gekkouscans.com.br" />
|
||
<data android:host="hentai.scantrad-vf.cc" />
|
||
<data android:host="hentaichan.live" />
|
||
<data android:host="hentaichan.pro" />
|
||
<data android:host="hentaicube.net" />
|
||
<data android:host="hentailib.me" />
|
||
<data android:host="hentaimanga.me" />
|
||
<data android:host="hentaiteca.net" />
|
||
<data android:host="hentaivn.autos" />
|
||
<data android:host="hentaivn.tv" />
|
||
<data android:host="hentaiwebtoon.com" />
|
||
<data android:host="hentaixcomic.com" />
|
||
<data android:host="hentaixdickgirl.com" />
|
||
<data android:host="hentaixyuri.com" />
|
||
<data android:host="hentaizone.xyz" />
|
||
<data android:host="herenscan.com" />
|
||
<data android:host="hhentai.fr" />
|
||
<data android:host="hikariscan.com.br" />
|
||
<data android:host="hipercool.xyz" />
|
||
<data android:host="hmanhwa.com" />
|
||
<data android:host="hni-scantrad.com" />
|
||
<data android:host="honey-manga.com.ua" />
|
||
<data android:host="hscans.com" />
|
||
<data android:host="hto.to" />
|
||
<data android:host="id.gourmetscans.net" />
|
||
<data android:host="illusionscan.com" />
|
||
<data android:host="immortalupdates.com" />
|
||
<data android:host="immortalupdates.id" />
|
||
<data android:host="imperiodabritannia.com" />
|
||
<data android:host="imperioscans.com.br" />
|
||
<data android:host="indo18h.com" />
|
||
<data android:host="infrafandub.xyz" />
|
||
<data android:host="isekaiscan.top" />
|
||
<data android:host="it.ninemanga.com" />
|
||
<data android:host="itsyourightmanhua.com" />
|
||
<data android:host="jaiminisbox.net" />
|
||
<data android:host="japscan.ws" />
|
||
<data android:host="jiangzaitoon.co" />
|
||
<data android:host="jimanga.com" />
|
||
<data android:host="jpmangas.xyz" />
|
||
<data android:host="kanzenin.xyz" />
|
||
<data android:host="karatcam-scans.fr" />
|
||
<data android:host="katakomik.online" />
|
||
<data android:host="kiryuu.id" />
|
||
<data android:host="kissmanga.in" />
|
||
<data android:host="klikmanga.id" />
|
||
<data android:host="klz9.com" />
|
||
<data android:host="koinoboriscan.com" />
|
||
<data android:host="kolmanga.com" />
|
||
<data android:host="komikav.com" />
|
||
<data android:host="komikcast.io" />
|
||
<data android:host="komikdewasa.cfd" />
|
||
<data android:host="komikgo.org" />
|
||
<data android:host="komikhentai.co" />
|
||
<data android:host="komikid.com" />
|
||
<data android:host="komikindo.co" />
|
||
<data android:host="komikindo.info" />
|
||
<data android:host="komiklab.com" />
|
||
<data android:host="komiklokal.cfd" />
|
||
<data android:host="komikmama.co" />
|
||
<data android:host="komikmanhwa.me" />
|
||
<data android:host="komikmirror.art" />
|
||
<data android:host="komiksan.link" />
|
||
<data android:host="komiksay.site" />
|
||
<data android:host="komikstation.co" />
|
||
<data android:host="komiktap.in" />
|
||
<data android:host="komiku.com" />
|
||
<data android:host="komikzoid.xyz" />
|
||
<data android:host="ksgroupscans.com" />
|
||
<data android:host="kumascans.com" />
|
||
<data android:host="kunmanga.com" />
|
||
<data android:host="ladymanga.com" />
|
||
<data android:host="lectortmo.com" />
|
||
<data android:host="lectorunitoon.com" />
|
||
<data android:host="legacy-scans.com" />
|
||
<data android:host="legionscans.com" />
|
||
<data android:host="leitor.kamisama.com.br" />
|
||
<data android:host="leitorizakaya.net" />
|
||
<data android:host="lelscanvf.cc" />
|
||
<data android:host="leryaoi.com" />
|
||
<data android:host="lilymanga.net" />
|
||
<data android:host="limascans.xyz/v2" />
|
||
<data android:host="lkscanlation.com" />
|
||
<data android:host="lolicon.mobi" />
|
||
<data android:host="lugnica-scans.com" />
|
||
<data android:host="lunarscan.org" />
|
||
<data android:host="luxmanga.net" />
|
||
<data android:host="lxmanga.net" />
|
||
<data android:host="lynxscans.com" />
|
||
<data android:host="m.isekaiscan.to" />
|
||
<data android:host="mafia-manga.com" />
|
||
<data android:host="maidscan.com.br" />
|
||
<data android:host="manga1st.online" />
|
||
<data android:host="manga3s.com" />
|
||
<data android:host="manga18.club" />
|
||
<data android:host="manga68.com" />
|
||
<data android:host="manga689.com" />
|
||
<data android:host="manga-chan.me" />
|
||
<data android:host="manga-crab.com" />
|
||
<data android:host="manga-diyari.com" />
|
||
<data android:host="manga-fast.com" />
|
||
<data android:host="manga-fr.me" />
|
||
<data android:host="manga-mate.org" />
|
||
<data android:host="manga-moons.net" />
|
||
<data android:host="manga-scan.co" />
|
||
<data android:host="manga-scantrad.io" />
|
||
<data android:host="manga-tx.com" />
|
||
<data android:host="manga-uptocats.com" />
|
||
<data android:host="manga.clone-army.org" />
|
||
<data android:host="manga.in.ua" />
|
||
<data android:host="manga.mundodrama.site" />
|
||
<data android:host="mangaaction.com" />
|
||
<data android:host="mangaatrend.net" />
|
||
<data android:host="mangabaz.net" />
|
||
<data android:host="mangabob.com" />
|
||
<data android:host="mangabuddy.com" />
|
||
<data android:host="mangacim.com" />
|
||
<data android:host="mangaclash.com" />
|
||
<data android:host="mangacultivator.com" />
|
||
<data android:host="mangacute.com" />
|
||
<data android:host="mangacv.com" />
|
||
<data android:host="mangadass.com" />
|
||
<data android:host="mangadeemak.com" />
|
||
<data android:host="mangadex.org" />
|
||
<data android:host="mangadistrict.com" />
|
||
<data android:host="mangadna.com" />
|
||
<data android:host="mangadoor.com" />
|
||
<data android:host="mangaeffect.com" />
|
||
<data android:host="mangaforest.me" />
|
||
<data android:host="mangaforfree.com" />
|
||
<data android:host="mangafoxfull.com" />
|
||
<data android:host="mangafreak.online" />
|
||
<data android:host="mangagalaxy.me" />
|
||
<data android:host="mangagg.com" />
|
||
<data android:host="mangagoyaoi.com" />
|
||
<data android:host="mangagreat.com" />
|
||
<data android:host="mangahentai.me" />
|
||
<data android:host="mangahub.fr" />
|
||
<data android:host="mangaid.click" />
|
||
<data android:host="mangaindo.me" />
|
||
<data android:host="mangak2.com" />
|
||
<data android:host="mangakakalot.com" />
|
||
<data android:host="mangakeyfi.net" />
|
||
<data android:host="mangaking.net" />
|
||
<data android:host="mangakio.me" />
|
||
<data android:host="mangakiss.org" />
|
||
<data android:host="mangakita.net" />
|
||
<data android:host="mangakomi.io" />
|
||
<data android:host="mangakyo.org" />
|
||
<data android:host="mangalek.com" />
|
||
<data android:host="mangaleks.com" />
|
||
<data android:host="mangaleveling.com" />
|
||
<data android:host="mangalib.me" />
|
||
<data android:host="mangalike.me" />
|
||
<data android:host="mangalink.online" />
|
||
<data android:host="mangalionz.com" />
|
||
<data android:host="mangamammy.ru" />
|
||
<data android:host="mangamanhua.online" />
|
||
<data android:host="mangamaniacs.org" />
|
||
<data android:host="manganato.com" />
|
||
<data android:host="mangaokutr.com" />
|
||
<data android:host="mangaonelove.site" />
|
||
<data android:host="mangaonlineteam.com" />
|
||
<data android:host="mangaowl.to" />
|
||
<data android:host="mangaprotm.com" />
|
||
<data android:host="mangapt.com" />
|
||
<data android:host="mangapuma.com" />
|
||
<data android:host="mangaread.co" />
|
||
<data android:host="mangareaderpro.com" />
|
||
<data android:host="mangareading.org" />
|
||
<data android:host="mangarockteam.com" />
|
||
<data android:host="mangarocky.com" />
|
||
<data android:host="mangarolls.net" />
|
||
<data android:host="mangarosie.in" />
|
||
<data android:host="mangas-origines.fr" />
|
||
<data android:host="mangas-origines.xyz" />
|
||
<data android:host="mangaschan.com" />
|
||
<data android:host="mangasehri.com" />
|
||
<data android:host="mangaspark.com" />
|
||
<data android:host="mangastarz.com" />
|
||
<data android:host="mangastic.cc" />
|
||
<data android:host="mangastic.cc" />
|
||
<data android:host="mangasushi.org" />
|
||
<data android:host="mangasusuku.xyz" />
|
||
<data android:host="mangatale.co" />
|
||
<data android:host="mangatone.com" />
|
||
<data android:host="mangatoto.com" />
|
||
<data android:host="mangatoto.net" />
|
||
<data android:host="mangatoto.org" />
|
||
<data android:host="mangatx.com" />
|
||
<data android:host="mangaus.xyz" />
|
||
<data android:host="mangavisa.com" />
|
||
<data android:host="mangaweebs.in" />
|
||
<data android:host="mangawt.com" />
|
||
<data android:host="mangax1.com" />
|
||
<data android:host="mangaxyz.com" />
|
||
<data android:host="mangayaro.net" />
|
||
<data android:host="mangazavr.ru" />
|
||
<data android:host="mangazodiac.com" />
|
||
<data android:host="manhatic.com" />
|
||
<data android:host="manhuaes.com" />
|
||
<data android:host="manhuafast.com" />
|
||
<data android:host="manhuafast.net" />
|
||
<data android:host="manhuaga.com" />
|
||
<data android:host="manhuahot.com" />
|
||
<data android:host="manhuamix.com" />
|
||
<data android:host="manhuaplus.com" />
|
||
<data android:host="manhuascan.us" />
|
||
<data android:host="manhuaus.com" />
|
||
<data android:host="manhuazone.net" />
|
||
<data android:host="manhwa18.app" />
|
||
<data android:host="manhwa18.com" />
|
||
<data android:host="manhwa18.net" />
|
||
<data android:host="manhwa18.org" />
|
||
<data android:host="manhwa68.com" />
|
||
<data android:host="manhwa-latino.com" />
|
||
<data android:host="manhwaclan.com" />
|
||
<data android:host="manhwadesu.top" />
|
||
<data android:host="manhwafull.com" />
|
||
<data android:host="manhwahentai.me" />
|
||
<data android:host="manhwaindo.icu" />
|
||
<data android:host="manhwaindo.id" />
|
||
<data android:host="manhwakool.com" />
|
||
<data android:host="manhwalist.xyz" />
|
||
<data android:host="manhwalover.com" />
|
||
<data android:host="manhwaplus.pro" />
|
||
<data android:host="manhwasco.net" />
|
||
<data android:host="manhwatop.com" />
|
||
<data android:host="manhwaworld.com" />
|
||
<data android:host="manhwax.org" />
|
||
<data android:host="manhwaz.com" />
|
||
<data android:host="mantrazscan.com" />
|
||
<data android:host="manwe.pro" />
|
||
<data android:host="manycomic.com" />
|
||
<data android:host="manytoon.com" />
|
||
<data android:host="manytoon.me" />
|
||
<data android:host="masterkomik.com" />
|
||
<data android:host="melokomik.xyz" />
|
||
<data android:host="mgkomik.com" />
|
||
<data android:host="miauscans.com" />
|
||
<data android:host="milftoon.xxx" />
|
||
<data android:host="mintmanga.com" />
|
||
<data android:host="mintmanga.live" />
|
||
<data android:host="mirrordesu.ink" />
|
||
<data android:host="mm-scans.org" />
|
||
<data android:host="momonohanascan.com" />
|
||
<data android:host="monarcamanga.com" />
|
||
<data android:host="moonloversscan.com.br" />
|
||
<data android:host="moonwitchinlovescan.com" />
|
||
<data android:host="mortalsgroove.com" />
|
||
<data android:host="mto.to" />
|
||
<data android:host="mundomangakun.com.br" />
|
||
<data android:host="mundomanhwa.com" />
|
||
<data android:host="murimscan.run" />
|
||
<data android:host="neatmangas.com" />
|
||
<data android:host="neoxscans.net" />
|
||
<data android:host="nettruyenin.com" />
|
||
<data android:host="nettruyento.com" />
|
||
<data android:host="neumanga.net" />
|
||
<data android:host="neumanga.xyz" />
|
||
<data android:host="nhattruyenmin.com" />
|
||
<data android:host="nhentai.net" />
|
||
<data android:host="nicovideo.jp" />
|
||
<data android:host="nightscans.org" />
|
||
<data android:host="niji-translations.com" />
|
||
<data android:host="ninjascan.site" />
|
||
<data android:host="niverafansub.com" />
|
||
<data android:host="nocsummer.com.br" />
|
||
<data android:host="noindexscan.com" />
|
||
<data android:host="nonbiri.space" />
|
||
<data android:host="novelcrow.com" />
|
||
<data android:host="novelmic.com" />
|
||
<data android:host="novelstown.cyou" />
|
||
<data android:host="nude-moon.net" />
|
||
<data android:host="nude-moon.org" />
|
||
<data android:host="nyxmanga.com" />
|
||
<data android:host="origami-orpheans.com.br" />
|
||
<data android:host="otsugami.id" />
|
||
<data android:host="oxapk.com" />
|
||
<data android:host="ozulmanga.com" />
|
||
<data android:host="painfulnightz.com" />
|
||
<data android:host="pantheon-scan.com" />
|
||
<data android:host="papscan.com" />
|
||
<data android:host="paragonscans.com" />
|
||
<data android:host="peacescans.com" />
|
||
<data android:host="phantomscans.com" />
|
||
<data android:host="phenixscans.fr" />
|
||
<data android:host="pianmanga.me" />
|
||
<data android:host="pirulitorosa.site" />
|
||
<data android:host="piscans.in" />
|
||
<data android:host="platinumscans.com" />
|
||
<data android:host="pojokmanga.net" />
|
||
<data android:host="popsmanga.com" />
|
||
<data android:host="portalyaoi.com" />
|
||
<data android:host="prismahentai.com" />
|
||
<data android:host="prismascans.net" />
|
||
<data android:host="projetoscanlator.com" />
|
||
<data android:host="psunicorn.com" />
|
||
<data android:host="queenscans.com" />
|
||
<data android:host="ragnarokscan.com" />
|
||
<data android:host="ragnarokscanlation.com" />
|
||
<data android:host="raijinscans.fr" />
|
||
<data android:host="raikiscan.com" />
|
||
<data android:host="rainbowfairyscan.com" />
|
||
<data android:host="randomscans.com" />
|
||
<data android:host="ravenscans.com" />
|
||
<data android:host="rawdex.net" />
|
||
<data android:host="rawkuma.com" />
|
||
<data android:host="read-nifteam.info" />
|
||
<data android:host="read.babelwuxia.com" />
|
||
<data android:host="readcomicsonline.ru" />
|
||
<data android:host="reader.deathtollscans.net" />
|
||
<data android:host="reader.decadencescans.com" />
|
||
<data android:host="reader.evilflowers.com" />
|
||
<data android:host="reader.mangatellers.gr" />
|
||
<data android:host="reader.onepiecenakama.pl" />
|
||
<data android:host="reader.powermanga.org" />
|
||
<data android:host="reader.silentsky-scans.net" />
|
||
<data android:host="readfreecomics.com" />
|
||
<data android:host="readkomik.com" />
|
||
<data android:host="readmanga.io" />
|
||
<data android:host="readmanga.live" />
|
||
<data android:host="readmanga.me" />
|
||
<data android:host="readmangabat.com" />
|
||
<data android:host="readmanhua.net" />
|
||
<data android:host="readtoto.com" />
|
||
<data android:host="readtoto.net" />
|
||
<data android:host="readtoto.org" />
|
||
<data android:host="realmscans.xyz" />
|
||
<data android:host="reaperscans.fr" />
|
||
<data android:host="remanga.org" />
|
||
<data android:host="rightdark-scan.com" />
|
||
<data android:host="rio2manga.com" />
|
||
<data android:host="rio2manga.net" />
|
||
<data android:host="rogmangas.com" />
|
||
<data android:host="romantikmanga.com" />
|
||
<data android:host="ru.ninemanga.com" />
|
||
<data android:host="s2manga.com" />
|
||
<data android:host="samuraiscan.com" />
|
||
<data android:host="sawamics.com" />
|
||
<data android:host="saytruyenhay.com" />
|
||
<data android:host="scambertraslator.com" />
|
||
<data android:host="scan.hentai.menu" />
|
||
<data android:host="scanmanga-vf.ws" />
|
||
<data android:host="scansmangas.me" />
|
||
<data android:host="scansraw.com" />
|
||
<data android:host="scantrad-union.com" />
|
||
<data android:host="scantrad-vf.co" />
|
||
<data android:host="sekaikomik.pro" />
|
||
<data android:host="sektedoujin.cc" />
|
||
<data android:host="sektekomik.xyz" />
|
||
<data android:host="selfmanga.live" />
|
||
<data android:host="senpaiediciones.com" />
|
||
<data android:host="shadowmangas.com" />
|
||
<data android:host="shadowtrad.net" />
|
||
<data android:host="sheakomik.com" />
|
||
<data android:host="shibamanga.com" />
|
||
<data android:host="shinigami.id" />
|
||
<data android:host="shirodoujin.com" />
|
||
<data android:host="shootingstarscans.com" />
|
||
<data android:host="silencescan.com.br" />
|
||
<data android:host="sinensisscans.com" />
|
||
<data android:host="skanlacje-feniksy.pl" />
|
||
<data android:host="skymanga.work" />
|
||
<data android:host="skymangas.com" />
|
||
<data android:host="sleepytranslations.com" />
|
||
<data android:host="soulscans.my.id" />
|
||
<data android:host="spartanmanga.com.tr" />
|
||
<data android:host="sssscanlator.com" />
|
||
<data android:host="summanga.com" />
|
||
<data android:host="suryascans.com" />
|
||
<data android:host="sushiscan.fr" />
|
||
<data android:host="sushiscan.net" />
|
||
<data android:host="swatop.club" />
|
||
<data android:host="tankouhentai.com" />
|
||
<data android:host="tatakaescan.com" />
|
||
<data android:host="tecnoscann.com" />
|
||
<data android:host="teenmanhua.com" />
|
||
<data android:host="tempestfansub.com" />
|
||
<data android:host="templescan.net" />
|
||
<data android:host="templescanesp.com" />
|
||
<data android:host="tenkaiscan.net" />
|
||
<data android:host="theguildscans.com" />
|
||
<data android:host="thesugarscan.com" />
|
||
<data android:host="timenaight.com" />
|
||
<data android:host="todaymic.com" />
|
||
<data android:host="tonizutoon.com" />
|
||
<data android:host="toonchill.com" />
|
||
<data android:host="toonfr.com" />
|
||
<data android:host="toonhunter.com" />
|
||
<data android:host="toonily.com" />
|
||
<data android:host="toonily.me" />
|
||
<data android:host="toonily.net" />
|
||
<data android:host="toonitube.com" />
|
||
<data android:host="tortuga-ceviri.com" />
|
||
<data android:host="traduccionesmoonlight.com" />
|
||
<data android:host="treemanga.com" />
|
||
<data android:host="tritinia.org" />
|
||
<data android:host="truemanga.com" />
|
||
<data android:host="truyentranhlh.net" />
|
||
<data android:host="tsundoku.com.br" />
|
||
<data android:host="tukangkomik.id" />
|
||
<data android:host="tumanhwas.club" />
|
||
<data android:host="turktoon.com" />
|
||
<data android:host="v2.comiz.net" />
|
||
<data android:host="valkyriescan.com" />
|
||
<data android:host="vercomicsporno.com" />
|
||
<data android:host="vermangasporno.com" />
|
||
<data android:host="vermanhwa.es" />
|
||
<data android:host="viyafansub.com" />
|
||
<data android:host="void-scans.com" />
|
||
<data android:host="w.mangairo.com" />
|
||
<data android:host="wakamics.net" />
|
||
<data android:host="webcomic.me" />
|
||
<data android:host="webtoon-tr.com" />
|
||
<data android:host="webtoon.uk" />
|
||
<data android:host="webtoonempire.org" />
|
||
<data android:host="webtoonhatti.com" />
|
||
<data android:host="webtoons.top" />
|
||
<data android:host="webtoonscan.com" />
|
||
<data android:host="weloma.art" />
|
||
<data android:host="welovemanga.one" />
|
||
<data android:host="westmanga.info" />
|
||
<data android:host="wickedwitchscan.com" />
|
||
<data android:host="winterscan.com" />
|
||
<data android:host="wonderlandscan.com" />
|
||
<data android:host="woopread.com" />
|
||
<data android:host="worldmanhwas.bar" />
|
||
<data android:host="wto.to" />
|
||
<data android:host="www1.bluesolo.org" />
|
||
<data android:host="www.areascans.net" />
|
||
<data android:host="www.bentomanga.com" />
|
||
<data android:host="www.eromiau.com" />
|
||
<data android:host="www.inu-manga.com" />
|
||
<data android:host="www.japscan.lol" />
|
||
<data android:host="www.kuroimanga.com" />
|
||
<data android:host="www.lami-manga.com" />
|
||
<data android:host="www.lelmanga.com" />
|
||
<data android:host="www.lianscans.my.id" />
|
||
<data android:host="www.maid.my.id" />
|
||
<data android:host="www.majorscans.com" />
|
||
<data android:host="www.mangadods.com" />
|
||
<data android:host="www.mangaread.org" />
|
||
<data android:host="www.mangascantrad.fr" />
|
||
<data android:host="www.mangatown.com" />
|
||
<data android:host="www.manhuabug.com" />
|
||
<data android:host="www.manhuakey.com" />
|
||
<data android:host="www.manhuasy.com" />
|
||
<data android:host="www.menudo-fansub.com" />
|
||
<data android:host="www.nettruyenmax.com" />
|
||
<data android:host="www.nettruyento.com" />
|
||
<data android:host="www.nightcomic.com" />
|
||
<data android:host="www.ninemanga.com" />
|
||
<data android:host="www.noblessetranslations.com" />
|
||
<data android:host="www.pantheon-scan.fr" />
|
||
<data android:host="www.paritehaber.com" />
|
||
<data android:host="www.peachscan.com" />
|
||
<data android:host="www.petrotechsociety.org" />
|
||
<data android:host="www.petrotechsociety.org" />
|
||
<data android:host="www.ramareader.it" />
|
||
<data android:host="www.rh2plusmanga.com" />
|
||
<data android:host="www.ruyamanga.com" />
|
||
<data android:host="www.scan-fr.org" />
|
||
<data android:host="www.scan-vf.net" />
|
||
<data android:host="www.thaimanga.net" />
|
||
<data android:host="www.topmanhua.com" />
|
||
<data android:host="www.vfscan.com" />
|
||
<data android:host="www.walpurgiscan.it" />
|
||
<data android:host="www.webtoon.xyz" />
|
||
<data android:host="www.witcomics.net" />
|
||
<data android:host="www.xn--l3c0azab5a2gta.com" />
|
||
<data android:host="www.yaoitoshokan.net" />
|
||
<data android:host="xbato.com" />
|
||
<data android:host="xbato.net" />
|
||
<data android:host="xbato.org" />
|
||
<data android:host="xoxocomics.net" />
|
||
<data android:host="xx.hentaichan.live" />
|
||
<data android:host="xxx.hentaichan.live" />
|
||
<data android:host="y.hentaichan.live" />
|
||
<data android:host="yaoi-chan.me" />
|
||
<data android:host="yaoi.mobi" />
|
||
<data android:host="yaoilib.me" />
|
||
<data android:host="yaoiscan.com" />
|
||
<data android:host="ycscan.com" />
|
||
<data android:host="yugenmangas.com.br" />
|
||
<data android:host="yuri.live" />
|
||
<data android:host="zahard.xyz" />
|
||
<data android:host="zandynofansub.aishiteru.org" />
|
||
<data android:host="zbato.com" />
|
||
<data android:host="zbato.net" />
|
||
<data android:host="zbato.org" />
|
||
<data android:host="zeroscan.com.br" />
|
||
<data android:host="zinmanga.com" />
|
||
<data android:host="zinmanhwa.com" />
|
||
<data android:host="zuttomanga.com" />
|
||
<data android:host="реманга.орг" />
|
||
</intent-filter>
|
||
</activity-alias>
|
||
|
||
</application>
|
||
|
||
</manifest>
|