version:1.2.5

fix:
update:资源同步,样式同步,优化更新
This commit is contained in:
2026-03-02 15:50:50 +08:00
parent 626d61d7b3
commit 9e19962c17
126 changed files with 10745 additions and 498 deletions

View File

@@ -39,9 +39,12 @@
<uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_PHONE_NUMBERS" />
<!--amap-->
<!-- 用于开启 debug 版本的应用在6.0 系统上 层叠窗口权限 -->
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<!-- Normal Permissions 不需要运行时注册 -->
<!-- 获取运营商信息,用于支持提供运营商信息相关的接口 -->
<!-- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>-->
@@ -123,12 +126,12 @@
android:enabled="true"
android:excludeFromRecents="true"
android:exported="true"
android:launchMode="singleTask"
android:launchMode="singleTop"
android:resizeableActivity="true"
android:resumeWhilePausing="true"
android:screenOrientation="landscape"
android:stateNotNeeded="true"
android:theme="@style/AppThemeWithoutFitsSystemWindows"
android:theme="@style/HomeThemeWithoutFitsSystemWindows"
android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -242,6 +245,14 @@
android:launchMode="singleTask"
android:screenOrientation="landscape"
android:theme="@style/AppWhiteTheme" />
<activity
android:name=".activity.debug.DebugActivity"
android:launchMode="singleTask"
android:screenOrientation="landscape"
android:theme="@style/AppWhiteThemeWithoutFitsSystemWindows" />
<activity
android:name=".eula.LicenseActivity"
android:exported="false" />
<receiver
@@ -276,10 +287,18 @@
</intent-filter>
</service>
<receiver
android:name=".receiver.InstallResultReceiver"
android:enabled="true"
android:exported="true" />
<service android:name=".service.ManagerService">
<intent-filter android:priority="1000">
<action android:name="android.intent.action.USER_PRESENT" />
<action android:name="android.intent.action.SCREEN_ON" />
<action android:name="android.intent.action.SCREEN_OFF" />
<action android:name="android.intent.action.DATE_CHANGED" />
<action android:name="android.intent.action.TIME_SET" />
<action android:name="android.intent.action.TIMEZONE_CHANGED" />
<action android:name="android.intent.action.TIME_TICK" />
</intent-filter>
</service>
<service
android:name=".alarm.AlarmService"
@@ -316,6 +335,24 @@
android:enabled="true"
android:exported="true" />
<receiver
android:name=".receiver.InstallResultReceiver"
android:enabled="true"
android:exported="true" />
<receiver
android:name=".receiver.AoleDeviceAdminReceiver"
android:description="@string/sample_device_admin_description"
android:label="@string/sample_device_admin"
android:permission="android.permission.BIND_DEVICE_ADMIN">
<meta-data
android:name="android.app.device_admin"
android:resource="@xml/device_admin_sample" />
<intent-filter>
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
</intent-filter>
</receiver>
<receiver
android:name=".receiver.ApkInstallReceiver"
android:enabled="true"