Error file opener and Streaming Media with SDK29

When i Use sdk 28 work but I use sdk 29 not work.
When ?
Fail we open video with streaming media and file opener pdf.

How simulator error?
android studio
-> Configure -> Sdk manager install o android 10.0 (q) close modal
-> Configure -> AVD MANGER -> CREATE VIRTUAL -> Pixel 3a XL -> NEXT -> Q -> NEXT -> FINISH
run this code

async openVideo() {
    let options: CaptureVideoOptions = {
      limit: 1,
      duration: 5,
      quality: 0
    }

    await this.mediaCapture.captureVideo(options).then((res: MediaFile[]) => {
      this.video = res[0].fullPath;
    }, (err: CaptureError) => {
      console.error(err);
    });
  }

  startVideo(video) {

    let options: StreamingVideoOptions = {
      successCallback: () => { console.log("Success") },
      errorCallback: (error) => {
        console.log("Video Start Fail")
        console.log(error)
      },
      orientation: 'portrait',
      shouldAutoClose: true,
      controls: true
    }
    this.streamingMedia.playVideo(video, options);

  }

ionic cordova emulate android.

I resolved in config.xml

        <application android:usesCleartextTraffic="true" />

        <application android:largeHeap="true" />

        <preference name="AndroidExtraFilesystems" value="files,files-external,documents,sdcard,cache,cache-external,assets,root" />

        <application android:requestLegacyExternalStorage="true" />

    </edit-config>
    <preference name="android-buildToolsVersion" value="29.0.0" />

    <preference name="android-minSdkVersion" value="22" />

    <preference name="android-targetSdkVersion" value="30" />

    <preference name="android-supportLibVersion" value="28.0.0" />