Files
midi-android/moduleroom/src/main/AndroidManifest.xml
梁小江 a4caa9b078 1:修改页面,更换room变成kotlin,
2:在所有的跳转到WEBview的时候,使用Intent的方式
3:优化网络请求
2025-09-26 14:32:35 +08:00

55 lines
2.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
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:screenOrientation="portrait"
android:launchMode="singleTask"
android:excludeFromRecents="true"
android:exported="true"
android:windowSoftInputMode="adjustPan"
android:enableOnBackInvokedCallback="false"
android:theme="@style/TransparentActivityTheme"
android:configChanges="orientation|screenSize|keyboardHidden"
tools:targetApi="tiramisu" />
<!-- <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"-->
<!-- />-->
<service
android:name=".service.MediaProjectionService"
android:foregroundServiceType="mediaProjection">
</service>
<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" />
</application>
</manifest>