bravobit / FFmpeg-Android

FFMpeg/FFprobe compiled for Android
https://bravobit.nl/
MIT License
733 stars 172 forks source link

It is recommended to separate arm from x86 #147

Closed lodgkk closed 4 years ago

lodgkk commented 4 years ago

The project is too big

HBiSoft commented 4 years ago

You do not need x86, you can exclude it from your project by adding the following to your app levelbuild.gradle:

android {
    ...
    aaptOptions {
        ignoreAssetsPattern "!x86"
    }
}
lodgkk commented 4 years ago

thanks

HBiSoft commented 4 years ago

@lodgkk If that answered your question, you can then close the issue.

alexcohn commented 4 years ago

You can use splits to generate arm and x86 flavors of your APK.