zhibo/android-app/app/src/main/AndroidManifest.xml

54 lines
1.7 KiB
XML
Raw Normal View History

2025-12-16 15:47:36 +08:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="Live Streaming"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.LiveStreaming"
2025-12-17 17:23:54 +08:00
android:usesCleartextTraffic="true"
android:hardwareAccelerated="true"
android:largeHeap="true">
2025-12-16 15:47:36 +08:00
2025-12-17 15:38:00 +08:00
<activity
android:name="com.example.livestreaming.FishPondActivity"
android:exported="false" />
<activity
android:name="com.example.livestreaming.ProfileActivity"
android:exported="false" />
<activity
android:name="com.example.livestreaming.WishTreeActivity"
android:exported="false" />
<activity
android:name="com.example.livestreaming.MessagesActivity"
android:exported="false" />
2025-12-16 15:47:36 +08:00
<activity
android:name="com.example.livestreaming.PlayerActivity"
android:exported="false" />
<activity
android:name="com.example.livestreaming.RoomDetailActivity"
android:exported="false" />
<activity
android:name="com.example.livestreaming.MainActivity"
2025-12-17 17:23:54 +08:00
android:exported="true"
android:launchMode="singleTop"
android:screenOrientation="portrait">
2025-12-16 15:47:36 +08:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>