mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 01:15:14 +01:00
36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="eu.kanade.mangafeed" >
|
||
|
|
||
|
<uses-permission android:name="android.permission.INTERNET" />
|
||
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||
|
|
||
|
<application
|
||
|
android:name=".App"
|
||
|
android:allowBackup="true"
|
||
|
android:icon="@mipmap/ic_launcher"
|
||
|
android:label="@string/app_name"
|
||
|
android:theme="@style/AppTheme" >
|
||
|
<activity
|
||
|
android:name="eu.kanade.mangafeed.ui.activity.MainActivity"
|
||
|
android:label="@string/label_main"
|
||
|
android:theme="@style/AppTheme.NoActionBar">
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
|
||
|
<receiver
|
||
|
android:name="eu.kanade.mangafeed.data.SyncService$SyncOnConnectionAvailable"
|
||
|
android:enabled="false">
|
||
|
<intent-filter>
|
||
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
||
|
</intent-filter>
|
||
|
</receiver>
|
||
|
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|