From ca8bc638ba9cbca3f5f6a4d497d45f92e70064f3 Mon Sep 17 00:00:00 2001 From: cloudroam <cloudroam> Date: 星期三, 16 四月 2025 08:44:15 +0800 Subject: [PATCH] add: 火车票和航班处理 --- app/src/main/AndroidManifest.xml | 16 +++++++++++++--- 1 files changed, 13 insertions(+), 3 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 2cf9cda..17c8460 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -86,6 +86,9 @@ android:usesCleartextTraffic="true" tools:targetApi="31"> <activity + android:name=".activity.AboutCompanyActivity" + android:exported="false" /> + <activity android:name=".activity.SettingActivity" android:configChanges="orientation|keyboardHidden|screenSize" android:exported="false" @@ -140,11 +143,18 @@ android:theme="@style/Theme.ContentDetail" /> <activity android:name=".ui.profile.EditProfileActivity" - android:exported="false"/> + android:exported="false" /> <activity android:name=".ui.invitation.InvitationActivity" - android:exported="false"/> - + android:exported="false" /> + <activity + android:name=".activity.ReminderListActivity" + android:exported="false" + android:label="提醒列表" /> + <activity + android:name=".activity.ReminderSettingsActivity" + android:exported="false" + android:label="设置提醒" /> </application> </manifest> \ No newline at end of file -- Gitblit v1.9.3