Hello
I putted
implementation 'com.arthenica:mobile-ffmpeg-full:4.2.1'
and my
minSdkVersion 22
targetSdkVersion 28
I got the error
### ERROR: Manifest merger failed : uses-sdk:minSdkVersion 22 cannot be smaller than version 24 declared in library [com.arthenica:mobile-ffmpeg-full:4.2.1] C:\Users\Young King\.gradle\caches\transforms-2\files-2.1\a1970841b61e5b7b2157793117539d8b\AndroidManifest.xml as the library might be using APIs not available in 22
Suggestion: use a compatible library with a minSdk of at most 22,
or increase this project's minSdk version to at least 24,
or use tools:overrideLibrary="com.arthenica.mobileffmpeg" to force usage (may lead to runtime failures)
I don't want to increase my minSdkVersion from 22 -> 24 .
How can i fix this issue. Thank you so
You can use LTS version of the full package? It is built with API Level 21.
implementation 'com.arthenica:mobile-ffmpeg-full:4.2.LTS'
Thank you so much for quick response
Most helpful comment
You can use LTS version of the full package? It is built with API Level 21.