From e9aa93f381afcf9f9cf0c39f2b9e32375ed49528 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期四, 30 十月 2025 17:39:43 +0800
Subject: [PATCH] 2025.10.30 1. 新增巡查场景历史详情相关数据逻辑(待完成);

---
 app/src/main/AndroidManifest.xml |  174 +++++++++++++++++++++++++++++++++++-----------------------
 1 files changed, 105 insertions(+), 69 deletions(-)

diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 3791057..792cef5 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/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:theme="@style/AppTheme"
+        android:usesCleartextTraffic="true"
+        android:theme="@style/AppTheme.NoActionBar"
         tools:ignore="GoogleAppIndexingWarning, LockedOrientationActivity"
         tools:targetApi="n">
         <!-- 璋冭瘯鐗堥珮寰峰湴鍥綤ey锛屾牴鎹紑鍙戠數鑴戜笉鍚屽彲鑳芥湁鎵�鏀瑰彉 -->
-        <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"   鏈嶅姟绔� -->
@@ -56,7 +56,7 @@
 
         <provider
             android:name="android.support.v4.content.FileProvider"
-            android:authorities="cn.flightfeather.thirdapp.fileProvider"
+            android:authorities="@string/file_provide"
             android:exported="false"
             android:grantUriPermissions="true">
             <meta-data
@@ -64,53 +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; 涓轰繚璇乺eceiver瀹夊叏锛屽缓璁缃笉鍙鍑猴紝濡傞渶瀵瑰叾浠栧簲鐢ㄥ紑鏀惧彲閫氳繃android锛歱ermission杩涜闄愬埗 &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:screenOrientation="portrait" />
+            android:name="cn.flightfeather.thirdappmodule.activity.ProblemDetailActivity"
+            android:screenOrientation="portrait"
+            android:theme="@style/AppTheme"/>
         <activity
-            android:name=".activity.UploadMediaFilesActivity"
-            android:screenOrientation="portrait" />
+            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-->
@@ -118,102 +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:screenOrientation="portrait" />
+            android:name="cn.flightfeather.thirdappmodule.activity.GitDetailActivity"
+            android:screenOrientation="portrait"
+            android:theme="@style/AppTheme"/>
         <activity
-            android:name=".activity.GradeActivity"
-            android:screenOrientation="portrait" />
+            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:screenOrientation="portrait" />
+            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:screenOrientation="portrait" />
+            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.inspection.MenuGradeActivity"
-            android:screenOrientation="portrait" />
-        <activity
-            android:name=".module.inspection.InspectionDetailActivity"
+            android:name="cn.flightfeather.thirdappmodule.module.nightwork.NightWorkRecordActivity"
             android:theme="@style/AppTheme.NoActionBar" />
-        <activity android:name=".module.inspection.MenuEvidenceActivity"
+        <activity
+            android:name="cn.flightfeather.thirdappmodule.module.nightwork.NightWorkManageActivity"
+            android:theme="@style/AppTheme.NoActionBar" />
+        <activity
+            android:name="cn.flightfeather.thirdappmodule.module.common.OfficeFileManageActivity"
+            android:theme="@style/AppTheme.NoActionBar" />
+        <activity
+            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="cn.flightfeather.thirdappmodule.module.inspection.InspectionDetailActivity"
+            android:theme="@style/AppTheme.NoActionBar" />
+        <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>
\ No newline at end of file

--
Gitblit v1.9.3