ffmpeg-android-java icon indicating copy to clipboard operation
ffmpeg-android-java copied to clipboard

[Android] Config split target when generate signed apk

Open moonjava2005 opened this issue 6 years ago • 0 comments

Dear all, I have problem with split ffmpeg when target build I use ffmpeg as dependency: implementation "com.writingminds:FFmpegAndroid:0.3.2" And split config in gradle build: splits { abi { reset() enable true universalApk false include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" } }

However, when I exact a apk (one of 4 these apks), I found it included FFMPEG ARM64 and x86 folder (each folder almost 10MB) How can I target only include FFMPEG ARM64 for apk-arm64 and x86 for apk-x86 only. Others lib and dependencies are split correctly except FFMPEG Best regards,

moonjava2005 avatar Apr 24 '19 04:04 moonjava2005