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"
|
2025-09-25 16:13:51 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2025-08-26 19:34:44 +08:00
|
|
|
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"
|
2025-09-12 09:08:14 +08:00
|
|
|
android:screenOrientation="portrait"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:launchMode="singleTask"
|
2025-09-23 14:39:49 +08:00
|
|
|
android:excludeFromRecents="true"
|
2025-09-12 09:08:14 +08:00
|
|
|
android:exported="true"
|
2025-09-23 14:39:49 +08:00
|
|
|
android:windowSoftInputMode="adjustPan"
|
|
|
|
|
android:enableOnBackInvokedCallback="false"
|
|
|
|
|
android:theme="@style/TransparentActivityTheme"
|
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
2025-09-25 16:13:51 +08:00
|
|
|
tools:targetApi="tiramisu" />
|
2025-09-19 02:28:02 +08:00
|
|
|
<!-- <activity-->
|
|
|
|
|
<!-- android:name=".activity.RoomActivity"-->
|
|
|
|
|
<!-- android:launchMode="singleInstancePerTask"-->
|
|
|
|
|
<!-- android:windowSoftInputMode="adjustPan"-->
|
|
|
|
|
<!-- android:enableOnBackInvokedCallback="false"-->
|
|
|
|
|
<!-- android:theme="@style/TransparentActivityTheme"-->
|
|
|
|
|
<!-- android:configChanges="orientation|screenSize|keyboardHidden"-->
|
|
|
|
|
<!-- android:screenOrientation="portrait"-->
|
|
|
|
|
<!-- android:exported="true"-->
|
|
|
|
|
<!-- />-->
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<service
|
|
|
|
|
android:name=".service.MediaProjectionService"
|
|
|
|
|
android:foregroundServiceType="mediaProjection">
|
|
|
|
|
</service>
|
2025-09-26 14:32:35 +08:00
|
|
|
|
|
|
|
|
<service
|
|
|
|
|
android:name=".service.ForegroundService"
|
|
|
|
|
android:enabled="true"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:foregroundServiceType="microphone|camera|mediaPlayback" />
|
|
|
|
|
<service
|
|
|
|
|
android:name=".service.CancelNoticeService"
|
|
|
|
|
android:enabled="true"
|
|
|
|
|
android:exported="true" />
|
|
|
|
|
|
2025-08-26 19:34:44 +08:00
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|