<?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.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>