Files
babelive_and/LiveBasic/live_screencap/src/main/AndroidManifest.xml
2026-02-06 14:55:21 +08:00

21 lines
822 B
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.alivc.live.baselive_recording">
<uses-permission android:name="android.permission.REORDER_TASKS" />
<application>
<!-- 请务必添加service否则会因系统权限不足导致推流黑屏 -->
<service
android:name=".service.ForegroundService"
android:enabled="true"
android:foregroundServiceType="mediaProjection|camera" />
<activity
android:name=".ui.VideoRecordConfigActivity"
android:alwaysRetainTaskState="true"
android:configChanges="uiMode"
android:screenOrientation="portrait"
android:theme="@style/AVLiveTheme" />
</application>
</manifest>