|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
|
|
|
|
|
<uses-permission android:name="android.permission.NFC" />
|
|
|
|
|
|
|
|
|
|
<uses-feature
|
|
|
|
|
android:name="android.hardware.nfc"
|
|
|
|
|
android:required="true" />
|
|
|
|
|
<uses-feature
|
|
|
|
|
android:name="android.hardware.camera"
|
|
|
|
|
android:required="true" />
|
|
|
|
|
<uses-feature android:name="android.hardware.autofocus" />
|
|
|
|
|
<uses-feature android:name="android.hardware.camera.autofocus" /> <!-- 相机自动对焦配置 -->
|
|
|
|
|
<!-- <uses-feature android:name="android.hardware.camera" -->
|
|
|
|
|
<!-- android:required="true" /> -->
|
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.WRITE_SECURE_SETTINGS"
|
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
|
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.STATUS_BAR"
|
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.READ_LOGS"
|
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
|
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
|
|
|
|
|
<uses-feature
|
|
|
|
|
android:name="android.hardware.telephony"
|
|
|
|
|
android:required="false" />
|
|
|
|
|
|
|
|
|
|
<permission-group android:name="${applicationId}.andpermission" />
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
|
|
|
|
|
tools:ignore="ScopedStorage" />
|
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.FLASHLIGHT" />
|
|
|
|
|
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
|
|
|
|
|
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
|
|
|
|
|
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" /> <!-- 适配Android R包可见性 开始 -->
|
|
|
|
|
<queries package="${applicationId}">
|
|
|
|
|
<intent>
|
|
|
|
|
<action android:name="android.media.action.IMAGE_CAPTURE" />
|
|
|
|
|
</intent>
|
|
|
|
|
<intent>
|
|
|
|
|
<action android:name="android.media.action.ACTION_VIDEO_CAPTURE" />
|
|
|
|
|
</intent>
|
|
|
|
|
</queries>
|
|
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:name=".App"
|
|
|
|
|
android:allowBackup="false"
|
|
|
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
|
|
|
android:fullBackupContent="false"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:supportsRtl="true"
|
|
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
|
android:usesCleartextTraffic="true"
|
|
|
|
|
tools:ignore="GoogleAppIndexingWarning"
|
|
|
|
|
tools:replace="android:allowBackup"
|
|
|
|
|
tools:targetApi="s">
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.LoginActivity"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
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=".ui.activity.VpnLoginActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.vpn.PrimaryAuthActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.vpn.AuthSuccessActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".MainActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.HomeActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.FaceRecognitionActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.SisActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".base.MipcaActivityCapture"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.SisBaseActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="landscape" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.WaitForToDoBaseActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.JiZhuActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxj.XscbglActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxj.XjMainActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxj.SxSbListActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxj.SxgzActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxj.XjZhTjActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxj.XjYulActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxj.SbxjcjsbActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxj.RecordEventActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxj.NFCInfoActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".SonActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="landscape" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".CustomDialogActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@android:style/Theme.Dialog" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.SbxdjglActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.RunLogActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.RunLogBaseActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.RunLogListActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.UseCarActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.UseSealActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.WaitForToDoActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.BiShowActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.SxcdjActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.SdjgzActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.DjStatisticsActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.SQxgdlrfActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.QxgdListActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.CurrentDayDjActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.HistoryDjActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.DjZhTjActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.SdlbActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.YulActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.SqdActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.ScjsjActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.XXfsDetaliActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.sbxdjgl.AjhAndSbjdActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<service
|
|
|
|
|
android:name="com.sangfor.atrust.sdp_tunnel.SdpVpnService"
|
|
|
|
|
android:enabled="true"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:permission="android.permission.BIND_VPN_SERVICE" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.sangfor.atrust.sdp_tunnel.VpnPermissionActivity"
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:launchMode="singleInstance" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.KksSearchActivity"
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:launchMode="singleInstance" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.YjyaActivity"
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:launchMode="singleInstance" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activity.KksSearchGongDanActivity"
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:launchMode="singleInstance" />
|
|
|
|
|
|
|
|
|
|
<provider
|
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/file_paths" />
|
|
|
|
|
</provider>
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="design_width"
|
|
|
|
|
android:value="720" />
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="design_height"
|
|
|
|
|
android:value="1280" />
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|