riku
2025-10-31 1897c4ad5fa73b3f0a36e1aa0e1e9000302a6ace
app/src/main/AndroidManifest.xml
@@ -1,7 +1,7 @@
<?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="cn.flightfeather.thirdapp">
    package="cn.flightfeather.thirdappmodule">
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.CALL_PHONE" />
@@ -34,21 +34,21 @@
        tools:ignore="ProtectedPermissions" />
    <application
        android:name=".CommonApplication"
        android:name="cn.flightfeather.thirdappmodule.CommonApplication"
        android:allowBackup="true"
        tools:replace="android:allowBackup"
        android:hardwareAccelerated="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:networkSecurityConfig="@xml/network_config"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:usesCleartextTraffic="true"
        android:theme="@style/AppTheme.NoActionBar"
        tools:ignore="GoogleAppIndexingWarning, LockedOrientationActivity"
        tools:targetApi="n">
        <!-- 调试版高德地图Key,根据开发电脑不同可能有所改变 -->
        <meta-data
            android:name="com.amap.api.v2.apikey"
            android:value="bf77391d8502be39f44c93b1f233ca91" /> <!-- android:value="5639b2f9853e650f74b874b5f98fc4ba" /> -->
         <!-- android:value="5639b2f9853e650f74b874b5f98fc4ba" /> -->
        <!-- android:value="0d875b71afa9e207e64cc6a0ee9fbda8" /> -->
        <!-- android:value="5639b2f9853e650f74b874b5f98fc4ba"   linli -->
        <!-- android:value="0d875b71afa9e207e64cc6a0ee9fbda8"   服务端 -->
@@ -64,55 +64,58 @@
                android:resource="@xml/filepaths" />
        </provider>
        <receiver android:name=".util.updateApp.DownLoadCompleteReceiver">
        <receiver android:name="cn.flightfeather.thirdappmodule.util.updateApp.DownLoadCompleteReceiver">
            <intent-filter>
                <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
            </intent-filter>
        </receiver>
<!--        <receiver-->
<!--            android:name="cn.flightfeather.thirdappmodule.util.push.MyMessageReceiver"-->
<!--            android:exported="false"> &lt;!&ndash; 为保证receiver安全,建议设置不可导出,如需对其他应用开放可通过android:permission进行限制 &ndash;&gt;-->
<!--            <intent-filter>-->
<!--                <action android:name="com.alibaba.push2.action.NOTIFICATION_OPENED" />-->
<!--            </intent-filter>-->
<!--            <intent-filter>-->
<!--                <action android:name="com.alibaba.push2.action.NOTIFICATION_REMOVED" />-->
<!--            </intent-filter>-->
<!--            <intent-filter>-->
<!--                <action android:name="com.alibaba.sdk.android.push.RECEIVE" />-->
<!--            </intent-filter>-->
<!--        </receiver>-->
        <activity
            android:name=".module.MainActivity"
            android:name="cn.flightfeather.thirdappmodule.module.MainActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".activity.LoginActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.LoginActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".activity.NewMonthTaskActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.NewMonthTaskActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".activity.SplashActivity"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:theme="@style/splashTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity> <!-- <activity -->
        <!-- android:name=".activity.MonitorObjectVersionMap" -->
        <!-- android:theme="@style/AppTheme.NoActionBar" /> -->
        <activity
            android:name=".activity.PhotoViewerActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.PhotoViewerActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppFullScreenTheme" />
        <activity
            android:name=".activity.ProblemDetailActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.ProblemDetailActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme"/>
        <activity
            android:name=".activity.UploadMediaFilesActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.UploadMediaFilesActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme"/>
        <activity
            android:name=".activity.ScenseMapActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.ScenseMapActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".activity.TaskActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.TaskActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <!--<activity-->
@@ -120,116 +123,133 @@
            <!--android:screenOrientation="portrait"-->
            <!--android:theme="@style/AppTheme.NoActionBar" />-->
        <activity
            android:name=".activity.SignActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.SignActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".activity.GitDetailActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.GitDetailActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme"/>
        <activity
            android:name=".activity.GradeActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.GradeActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme"/>
        <activity
            android:name=".activity.TaskDetailActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.TaskDetailActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".activity.SiteDetailActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.SiteDetailActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".activity.PromiseActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.PromiseActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".activity.SubTaskMapActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.SubTaskMapActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme"/>
        <activity
            android:name=".activity.MapActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.MapActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".activity.DebugTransSiteLatlngActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.DebugTransSiteLatlngActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme"/>
        <activity
            android:name=".activity.MOVMapActivity"
            android:name="cn.flightfeather.thirdappmodule.activity.MOVMapActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".dataanalysis.AnalysisTabActivity"
            android:name="cn.flightfeather.thirdappmodule.module.dataanalysis.AnalysisTabActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".dataanalysis.rank.AnalysisRankActivity"
            android:name="cn.flightfeather.thirdappmodule.module.dataanalysis.rank.AnalysisRankActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".module.inspectioninfo.ProblemChangeActivity"
            android:name="cn.flightfeather.thirdappmodule.module.inspectioninfo.ProblemChangeActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".module.inspectioninfo.ProblemChangeDetailActivity"
            android:name="cn.flightfeather.thirdappmodule.module.inspectioninfo.ProblemChangeDetailActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".module.task.NewTopTaskActivity"
            android:name="cn.flightfeather.thirdappmodule.module.task.NewTopTaskActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".module.task.NewSubTaskActivity"
            android:name="cn.flightfeather.thirdappmodule.module.task.NewSubTaskActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".module.task.NewMonthTaskMapActivity"
            android:name="cn.flightfeather.thirdappmodule.module.task.NewMonthTaskMapActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".module.task.MonthTaskManagementActivity"
            android:name="cn.flightfeather.thirdappmodule.module.task.MonthTaskManagementActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".module.task.SceneDetailActivity"
            android:name="cn.flightfeather.thirdappmodule.module.task.SceneDetailActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".module.nightwork.NightWorkRecordActivity"
            android:name="cn.flightfeather.thirdappmodule.module.nightwork.NightWorkRecordActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".module.nightwork.NightWorkManageActivity"
            android:name="cn.flightfeather.thirdappmodule.module.nightwork.NightWorkManageActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".module.common.OfficeFileManageActivity"
            android:name="cn.flightfeather.thirdappmodule.module.common.OfficeFileManageActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".module.inspection.MenuGradeActivity"
            android:name=".module.common.MapLocationActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuGradeActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme"/>
        <activity
            android:name=".module.inspection.InspectionDetailActivity"
            android:name="cn.flightfeather.thirdappmodule.module.inspection.InspectionDetailActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity android:name=".module.inspection.MenuEvidenceActivity"
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuEvidenceActivity"
            android:theme="@style/TransparentTheme" />
        <activity android:name=".module.inspection.MenuProblemUpdateActivity"
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuProblemUpdateActivity"
            android:theme="@style/TransparentTheme" />
        <activity android:name=".module.inspection.MenuRecheckActivity"
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuRecheckActivity"
            android:theme="@style/TransparentTheme" />
        <activity android:name=".module.inspection.MenuProblemListActivity"
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuProblemListActivity"
            android:theme="@style/TransparentTheme" />
        <activity android:name=".module.inspection.MenuChangeActivity"
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuChangeActivity"
            android:theme="@style/TransparentTheme" />
        <activity android:name=".module.inspection.MenuCameraActivity"
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuCameraActivity"
            android:theme="@style/TransparentTheme" />
        <activity android:name=".module.inspection.MenuNewGitActivity"
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuNewGitActivity"
            android:theme="@style/TransparentTheme" />
        <activity android:name=".module.inspection.MenuProblemCheckActivity"
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuProblemCheckActivity"
            android:theme="@style/TransparentTheme" />
        <activity android:name=".module.inspection.MenuChangeCheckActivity"
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuChangeCheckActivity"
            android:theme="@style/TransparentTheme" />
        <activity android:name=".module.inspection.ShareProblemActivity"
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuSceneAccountActivity"
            android:theme="@style/TransparentTheme" />
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuSceneHistoryActivity"
            android:theme="@style/TransparentTheme" />
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.MenuSceneInfoActivity"
            android:theme="@style/TransparentTheme" />
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.ShareProblemActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity android:name=".module.inspection.ShareProblemPreViewActivity"
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.ShareProblemPreViewActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity android:name=".module.common.CameraActivity"
        <activity android:name="cn.flightfeather.thirdappmodule.module.inspection.PicEvidenceActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity android:name="cn.flightfeather.thirdappmodule.module.common.CameraActivity"
            android:theme="@style/AppFullScreenTheme" />
        <activity android:name="cn.flightfeather.thirdappmodule.module.common.SearchActivity"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity android:name="cn.flightfeather.thirdappmodule.module.common.PhotoViewerActivity2"
            android:theme="@style/AppTheme" />
        <activity android:name="cn.flightfeather.thirdappmodule.activity.TestActivity"
            android:theme="@style/AppTheme.NoActionBar" />
    </application>
</manifest>