2025-08-26 19:34:44 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="com.example.moduleroom">
|
|
|
|
|
|
|
|
|
|
<application>
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="design_width_in_dp"
|
|
|
|
|
android:value="375" />
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="design_height_in_dp"
|
|
|
|
|
android:value="812" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".activity.RoomActivity"
|
|
|
|
|
android:exported="false"
|
2025-09-04 01:10:07 +08:00
|
|
|
android:launchMode="singleInstance"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:windowSoftInputMode="adjustPan"
|
|
|
|
|
android:enableOnBackInvokedCallback="false"
|
2025-09-02 23:03:08 +08:00
|
|
|
android:theme="@style/TransparentActivityTheme"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<service
|
|
|
|
|
android:name=".service.MediaProjectionService"
|
|
|
|
|
android:foregroundServiceType="mediaProjection">
|
|
|
|
|
</service>
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|