|
@@ -1,7 +1,6 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- xmlns:tools="http://schemas.android.com/tools"
|
|
|
- package="com.dlc.eboard">
|
|
|
+ xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
|
<uses-permission android:name="android.permission.INSTALL_PACKAGES" />
|
|
@@ -44,9 +43,6 @@
|
|
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
|
- <uses-permission
|
|
|
- android:name="android.hardware.usb.host"
|
|
|
- android:required="false" />
|
|
|
|
|
|
<application
|
|
|
android:name=".LabApp"
|
|
@@ -60,7 +56,9 @@
|
|
|
android:usesCleartextTraffic="true"
|
|
|
tools:targetApi="m">
|
|
|
|
|
|
- <receiver android:name=".broadcast.BootBroadcastReceiver">
|
|
|
+ <receiver
|
|
|
+ android:name=".broadcast.BootBroadcastReceiver"
|
|
|
+ android:exported="true">
|
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
@@ -70,9 +68,8 @@
|
|
|
<activity
|
|
|
android:name=".ui.SplashActivity"
|
|
|
android:exported="true"
|
|
|
- android:launchMode="singleTop"
|
|
|
- android:screenOrientation="sensorLandscape"
|
|
|
- >
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="sensorLandscape">
|
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
@@ -88,39 +85,38 @@
|
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale"
|
|
|
android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
- android:windowSoftInputMode="adjustPan"
|
|
|
- />
|
|
|
+ android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.MainActivity"
|
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale"
|
|
|
android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
- android:windowSoftInputMode="adjustPan"
|
|
|
- />
|
|
|
+ android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name="com.dlc.laboratory.ui.LabMainActivity"
|
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale"
|
|
|
android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
-
|
|
|
+
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.rule.SafetyRegulationActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
-
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name="com.dlc.laboratory.ui.guide.GuideActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
-
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.things.ThingsActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
@@ -128,162 +124,193 @@
|
|
|
android:name=".ui.risk.RiskActivity"
|
|
|
android:configChanges="orientation|keyboardHidden|navigation|screenSize"
|
|
|
android:hardwareAccelerated="true"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.sign.SignInActivity"
|
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.leave.LeaveActivity"
|
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.settings.SettingsActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.settings.ScanSettingsActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.msds.InstructionActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.person.LaboratoryPersonActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.lib.LabDetailActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.rule.SafetyRegulationDetailActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.common.HtmlFullScreenActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name="com.dlc.laboratory.ui.things.SelectAuthMethodActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.notice.NoticeActivity"
|
|
|
- android:launchMode="singleTop"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.lib.LabDescActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.monitor.MonitorListActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.monitor.MonitorFullScreenActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.auth.FourChoiceAuthActivity"
|
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale"
|
|
|
- android:screenOrientation="sensorLandscape"
|
|
|
android:hardwareAccelerated="true"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.auth.TwoChoiceAuthActivity"
|
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.auth.FingerAuthActivity"
|
|
|
+
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.auth.DualAuthActivity"
|
|
|
+
|
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.finger.FingerEnrollActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.finger.EnrollAuthActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".ui.finger.SelectFingerActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name="com.dlc.laboratory.ui.lib.ExLabDetailActivity"
|
|
|
+ android:exported="true"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name="com.dlc.laboratory.ui.rule.ExSafetyRegulationActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name="com.dlc.laboratory.ui.msds.ExInstructionActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name="com.dlc.laboratory.ui.risk.ExRiskActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name="com.dlc.laboratory.ui.person.ExLaboratoryPersonActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name="com.dlc.laboratory.ui.sign.ExSignInActivity"
|
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
<activity
|
|
|
android:name="com.dlc.laboratory.ui.leave.ExLeaveActivity"
|
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale"
|
|
|
+ android:launchMode="singleTask"
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
-<!-- <service-->
|
|
|
-<!-- android:name=".ui.HeartService"-->
|
|
|
-<!-- android:enabled="true"-->
|
|
|
-<!-- android:exported="false" />-->
|
|
|
+ <!-- <service-->
|
|
|
+ <!-- android:name=".ui.HeartService"-->
|
|
|
+ <!-- android:enabled="true"-->
|
|
|
+ <!-- android:exported="false" />-->
|
|
|
|
|
|
<service
|
|
|
android:name=".mqtt.MqttService"
|
|
@@ -315,7 +342,9 @@
|
|
|
android:resource="@xml/file_paths_public" />
|
|
|
</provider>
|
|
|
|
|
|
- <receiver android:name=".receiver.OpenApkReceiver">
|
|
|
+ <receiver
|
|
|
+ android:name=".receiver.OpenApkReceiver"
|
|
|
+ android:exported="true">
|
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.PACKAGE_REPLACED" />
|
|
|
<data android:scheme="${applicationId}" />
|
|
@@ -329,4 +358,8 @@
|
|
|
|
|
|
</application>
|
|
|
|
|
|
+ <uses-permission
|
|
|
+ android:name="android.hardware.usb.host"
|
|
|
+ android:required="false" />
|
|
|
+
|
|
|
</manifest>
|