tanersener / mobile-ffmpeg

FFmpeg for Android, iOS and tvOS. Not maintained anymore. Superseded by FFmpegKit.
https://tanersener.github.io/mobile-ffmpeg
GNU General Public License v3.0
3.85k stars 787 forks source link

Unable to create appbundel using this library in other module #659

Closed iukust3 closed 3 years ago

iukust3 commented 3 years ago

Description Hi i have a dynomic feature module which is using this library the name of his is "android10" when i want to create appbundel its show below error : "All modules with native libraries must support the same set of ABIs, but module 'base' supports '[ARMEABI_V7A]' and module 'android10' supports '[X86, ARMEABI_V7A, X86_64, ARM64_V8A]'." How i can solve this problem

iukust3 commented 3 years ago

monkeywithacupcake alexcohn Javernaut hannesa2

hannesa2 commented 3 years ago

An easy step is to add in your android10

android {
    defaultConfig {
        ndk {
            abiFilters 'armeabi-v7a'
        }
    }
}

to make it work, but I would at least add arm64-v8a to your base to have 64 bit as well. Playstore forces it too.

When you show your code, it's probably easier to help

github-actions[bot] commented 3 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.