AndroidAudioConverter permission is denied using Android Q

前端 未结 2 839
天命终不由人
天命终不由人 2021-01-14 09:15

Android Q has introduced some breaking changes with folder/file permissions. I get the following error when using the converter on Android:

java.io.IO

相关标签:
2条回答
  • 2021-01-14 09:41

    Now If You Guys Looking For FFMPEG for ANDROID Q Here is link use below FFMPEG Build. Include this to your app/build.gradle

    Min SDK 24

      dependencies {
            implementation 'com.arthenica:mobile-ffmpeg-full:4.3'
        }
    

    Min SDK 16

    dependencies {
        implementation 'com.arthenica:mobile-ffmpeg-full:4.2.2.LTS'
    }
    

    tested in OnePlus 7T
    Android Q

    0 讨论(0)
  • 2021-01-14 09:51

    If you don't want to change the library, Just change targetSdkVersion 29 to 28 in your build.gradle

    It worked for me.

    0 讨论(0)
提交回复
热议问题