2023-11-09 08:37:59 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-11-10 21:45:00 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools" >
|
2023-11-09 08:37:59 +08:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2023-11-10 21:45:00 +08:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
|
|
|
|
tools:ignore="ScopedStorage" />
|
2023-11-09 08:37:59 +08:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2023-12-01 16:17:06 +08:00
|
|
|
android:usesCleartextTraffic="true"
|
2024-03-05 16:50:07 +08:00
|
|
|
android:launchMode="singleTop"
|
2023-11-09 08:37:59 +08:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2024-05-09 20:30:22 +08:00
|
|
|
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" >
|
2023-11-10 21:45:00 +08:00
|
|
|
<service
|
|
|
|
android:name=".RestartService"
|
|
|
|
android:exported="false" >
|
|
|
|
<intent-filter>
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2023-11-09 08:37:59 +08:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:exported="true"
|
2023-11-10 21:45:00 +08:00
|
|
|
android:label="@string/app_name" >
|
2023-11-09 08:37:59 +08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2023-11-10 21:45:00 +08:00
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".Server"
|
|
|
|
android:exported="true" >
|
2023-11-09 08:37:59 +08:00
|
|
|
<intent-filter>
|
2023-11-10 21:45:00 +08:00
|
|
|
<action android:name="com.xixun.action.PlayerInfo" />
|
2023-11-09 08:37:59 +08:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2023-11-10 21:45:00 +08:00
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name=".BootCompletedReceiver"
|
|
|
|
android:exported="true" >
|
|
|
|
<intent-filter android:priority="999" >
|
2023-11-09 08:37:59 +08:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2023-12-01 16:17:06 +08:00
|
|
|
<meta-data android:name="android.max_aspect" android:value="2.1" />
|
2023-11-09 08:37:59 +08:00
|
|
|
</application>
|
2023-11-10 21:45:00 +08:00
|
|
|
|
2023-11-09 08:37:59 +08:00
|
|
|
</manifest>
|