react-native-webrtc
Version:
WebRTC for React Native
23 lines (18 loc) • 767 B
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.oney.WebRTCModule" >
<uses-sdk android:minSdkVersion="24" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION" />
<uses-feature
android:name="android.hardware.usb.host"
android:required="false"
tools:node="replace" />
<application>
<service
android:name="com.oney.WebRTCModule.MediaProjectionService"
android:foregroundServiceType="mediaProjection" >
</service>
</application>
</manifest>