From 30b57df644a2f9c27f21b98ca2086eae1da9cfa5 Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期一, 07 四月 2025 15:04:21 +0800
Subject: [PATCH] add: 消息提醒前版本
---
app/src/main/AndroidManifest.xml | 28 ++++++++++++++++++++++++----
1 files changed, 24 insertions(+), 4 deletions(-)
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index f471d9e..5e9d88c 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -83,7 +83,21 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.FirstApp"
- tools:targetApi="31">
+ tools:targetApi="31"
+ android:usesCleartextTraffic="true"
+ >
+
+ <provider
+ android:name="androidx.startup.InitializationProvider"
+ android:authorities="${applicationId}.androidx-startup"
+ android:exported="false"
+ tools:node="remove" />
+
+
+ <activity
+ android:name=".activity.VipActivity"
+ android:exported="false"
+ android:theme="@style/Theme.FirstApp" />
<activity
android:name=".ui.reminderOther.ReminderOtherAddActivity2"
android:configChanges="orientation|keyboardHidden|screenSize"
@@ -106,11 +120,17 @@
android:exported="false" />
<activity
android:name=".activity.PickupActivity"
- android:exported="false"/>
+ android:exported="false" />
<activity
android:name=".activity.ContentDetailActivity"
- android:theme="@style/Theme.ContentDetail"
- android:exported="false" />
+ android:exported="false"
+ android:theme="@style/Theme.ContentDetail" />
+ <activity
+ android:name=".ui.profile.EditProfileActivity"
+ android:exported="false"/>
+ <activity
+ android:name=".ui.invitation.InvitationActivity"
+ android:exported="false"/>
</application>
--
Gitblit v1.9.3