You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
459 lines
25 KiB
459 lines
25 KiB
<?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.ACCESS_COARSE_LOCATION" />
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
<uses-permission android:name="android.permission.CALL_PHONE" />
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
|
<uses-permission android:name="android.permission.FLASHLIGHT" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
<uses-permission android:name="android.permission.GET_TASKS" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission
|
|
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
|
|
tools:ignore="ScopedStorage" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH" /> <!-- 蓝牙 -->
|
|
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
<uses-permission
|
|
android:name="android.permission.BLUETOOTH_SCAN"
|
|
android:usesPermissionFlags="neverForLocation" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" />
|
|
|
|
<application
|
|
android:name="com.project.survey.App"
|
|
android:allowBackup="false"
|
|
android:extractNativeLibs="true"
|
|
android:icon="@mipmap/icon_launcher"
|
|
android:label="@string/app_name"
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
android:requestLegacyExternalStorage="true"
|
|
android:theme="@style/CustomThemeLight"
|
|
tools:replace="android:label,android:allowBackup">
|
|
<!-- the following MUST be in application, not activity -->
|
|
<uses-library
|
|
android:name="org.apache.http.legacy"
|
|
android:required="false" />
|
|
|
|
<activity
|
|
android:name=".ui.SplashActivity"
|
|
android:exported="true"
|
|
android:theme="@style/MySplashStyle">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".ui.MainActivity"
|
|
android:exported="true"
|
|
android:label="@string/app_name"
|
|
android:launchMode="singleTask"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
|
|
<activity
|
|
android:name=".ui.login.LoginActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
|
|
<activity
|
|
android:name=".ui.login.LoginInputCodeActivity"
|
|
android:exported="true"
|
|
android:label=""
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
|
|
<activity
|
|
android:name=".ui.login.ForgetPwdActivity"
|
|
android:exported="true"
|
|
android:label=""
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
|
|
<activity
|
|
android:name=".ui.login.ForgetPwdInputCodeActivity"
|
|
android:exported="true"
|
|
android:label=""
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
|
|
<activity
|
|
android:name=".ui.login.SetNewPwdActivity"
|
|
android:exported="true"
|
|
android:label=""
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.project.ProjectListActivity"
|
|
android:exported="true"
|
|
android:label="@string/project_list"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.approval.ApprovalActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.pointmeasure.PointMeasureListActivity"
|
|
android:exported="true"
|
|
android:label="@string/point_measure"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.lofting.LoftingListActivity"
|
|
android:exported="true"
|
|
android:label="@string/lofting"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.controlnet.FirstControlNetworkActivity"
|
|
android:exported="true"
|
|
android:label="@string/head_control_network"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.controlnet.SpecialControlNetworkActivity"
|
|
android:exported="true"
|
|
android:label="@string/dedicated_control_network"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.controlnet.ControlPointActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.satellitosis.SatelliteStatusActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.satellitosis.SatelliteSystemSwitchActivity"
|
|
android:exported="true"
|
|
android:label="卫星系统开关"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.SetupStationCurrentActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.mobilestationmode.GnssConfigSetActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.basestationtranslation.RtkBaseCorrectActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.mobilestationmode.base.RtkPointCorrectActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.lofting.pointlofting.PointStakingActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.lofting.pointlofting.PointStakingSettingActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.SetupStationInputActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.SetupStationKnownBackSightActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.SetupStationResectionActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.SetupStationResectionSubActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.ControlPointsNewActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.CoordinatePointsLibraryActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.StakingNewJobActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.PointFilterActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.AddResultFormatActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.ControlPointsActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.EditCoordinatePointActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.setupstation.ResultsTheExportActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.coordinatesystem.BingCeCoordinateSystemActivity"
|
|
android:exported="true"
|
|
android:label="@string/coordinate_system"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.mobilestationmode.base.RtkMatchingPointsActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.pointmeasure.measure.PointSurveyNewActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.pointmeasure.measure.PointSurveySettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_survey"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
<activity
|
|
android:name=".ui.lofting.pointlofting.record.RecordsActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.lofting.pointlofting.record.RecordDetailActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
<activity
|
|
android:name=".ui.pointmeasure.measure.CodeLibraryActivity"
|
|
android:exported="false">
|
|
<meta-data
|
|
android:name="android.app.lib_name"
|
|
android:value="" />
|
|
</activity>
|
|
<activity
|
|
android:name=".ui.pointmeasure.measure.PickerColorActivity"
|
|
android:exported="false">
|
|
<meta-data
|
|
android:name="android.app.lib_name"
|
|
android:value="" />
|
|
</activity>
|
|
<activity
|
|
android:name=".ui.pointmeasure.measure.AddCodeActivity"
|
|
android:exported="false">
|
|
<meta-data
|
|
android:name="android.app.lib_name"
|
|
android:value="" />
|
|
</activity>
|
|
<activity
|
|
android:name=".ui.pointmeasure.measure.CodeModelLibraryActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ui.pointmeasure.measure.CodeStylePointLineActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ui.pointmeasure.measure.CodeStyleSurfaceActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ui.pointmeasure.measure.ControlRecordListActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name="com.bingce.surveyor.agentweb.AgentWebActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:exported="true"
|
|
android:hardwareAccelerated="true"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.GeoRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.RtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.RtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.GeoRtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.GeoRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.ZhdRtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.ZhdRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.SouthRtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.SouthRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.DevecentRtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.DevecentRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.HuaceRtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.HuaceRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.ComnavRtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.ComnavRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.GeomaxRtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.GeomaxRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.IceGpsRtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.IceGpsRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.TersusRtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.TersusRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.SpectraRtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.FJDRtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.base.QxwzRtkBaseSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_base_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.SpectraRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.QxwzLiteQuanFangRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.staticc.RtkStaticSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_static_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.staticc.ComnavRtkStaticSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_static_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.staticc.FjdRtkStaticSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_static_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.staticc.GeoRtkStaticSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_static_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.staticc.HuaceRtkStaticSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_static_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.staticc.SouthRtkStaticSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_static_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.staticc.ZhdRtkStaticSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_static_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.FJDRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.QxwzRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name="com.project.survey.ui.instrument.mobilestationmode.rover.LianshiRtkRoverSettingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/rtk_rover_setting"
|
|
android:windowSoftInputMode="adjustUnspecified|stateHidden" />
|
|
<activity
|
|
android:name=".ui.instrument.coordinatesystem.CoordinateSystemListActivity"
|
|
android:label="@string/coordinate_system"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
</application>
|
|
|
|
</manifest> |