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

94 lines
3.1 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-18 14:20:41 +08:00
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<activity
android:name="com.example.livestreaming.TabPlaceholderActivity"
android:exported="false" />
<activity
android:name="com.example.livestreaming.WatchHistoryActivity"
android:exported="false" />
<activity
android:name="com.example.livestreaming.MyFriendsActivity"
android:exported="false" />
<activity
android:name="com.example.livestreaming.FansListActivity"
android:exported="false" />
<activity
android:name="com.example.livestreaming.LikesListActivity"
android:exported="false" />
<activity
android:name="com.example.livestreaming.FollowingListActivity"
android:exported="false" />
<activity
android:name="com.example.livestreaming.EditProfileActivity"
android:exported="false" />
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"
2025-12-17 19:06:57 +08:00
android:exported="false"
android:configChanges="orientation|screenSize|keyboardHidden"
android:screenOrientation="portrait" />
2025-12-16 15:47:36 +08:00
<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>