version:1.9

fix:
add:
This commit is contained in:
2022-03-30 14:04:59 +08:00
parent 9b3a1c8b92
commit ed6f11b717
21 changed files with 324 additions and 144 deletions

View File

@@ -102,7 +102,21 @@
android:supportsRtl="true"
android:theme="@style/ImmerseTheme"
tools:replace="android:allowBackup">
<activity
android:name=".activity.main.MainActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activity.SplashActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait">
</activity>
<service
android:name=".service.ControlPanelService"
android:enabled="true"
@@ -114,22 +128,6 @@
android:exported="true"
android:process=":remote" />
<activity
android:name=".activity.SplashActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activity.main.MainActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait" />
<service
android:name=".service.main.MainService"
android:enabled="true"
@@ -162,7 +160,6 @@
<action android:name="android.intent.action.TIME_TICK" />
</intent-filter>
</service>
<receiver
android:name=".receiver.BootReceiver"
android:enabled="true"
@@ -199,7 +196,6 @@
android:name=".receiver.InstallResultReceiver"
android:enabled="true"
android:exported="true" />
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.uiui.sn.fileprovider"
@@ -210,6 +206,8 @@
android:resource="@xml/file_paths" />
</provider>
<!-- Rich push 核心功能 since 2.0.6 -->
<activity
android:name="cn.jpush.android.ui.PopWinActivity"
@@ -451,7 +449,6 @@
</intent-filter>
</receiver>
<!-- MQTT START -->
<service
android:name="com.tencent.tpns.mqttchannel.services.MqttService"
@@ -463,11 +460,8 @@
android:authorities="com.uiui.sn.XG_SETTINGS_PROVIDER"
android:exported="false"
tools:replace="android:authorities" />
<!-- MQTT END-->
<!-- 【必须】 请修改为 APP 的 AccessId“15”开头的10位数字中间没空格 -->
<meta-data
android:name="XG_V2_ACCESS_ID"
@@ -477,8 +471,6 @@
<meta-data
android:name="XG_V2_ACCESS_KEY"
android:value="AG2PUQL7TEX5" />
<meta-data
android:name="JPUSH_CHANNEL"
android:value="developer-default" />
@@ -496,5 +488,4 @@
android:name="design_height_in_dp"
android:value="640" />
</application>
</manifest>