mirror of
https://github.com/fumiama/copymanga.git
synced 2026-06-06 07:50:23 +08:00
22 lines
943 B
XML
22 lines
943 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="top.fumiama.copymanga">
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme" >
|
|
<activity android:name=".activity.MainActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".activity.ViewMangaActivity"/>
|
|
<activity android:name=".activity.DlActivity"/>
|
|
</application>
|
|
</manifest> |