In my app I'm using "de.mrmaffen:vlc-android-sdk:2.0.6"
library and it's taking much storage but I can't find a smaller alternative.
So I decided as CommonsWare mentioned to use splits or product flavors but I can't get it to work.
I tried to follow the docs with no luck.
Any help appreciated.
Using Gradle flavors on vlc-android-sdk
2.4k Views Asked by Zacktamondo At
2
There are 2 best solutions below
0

You can use app bundle so you don't need to handle multiple apks. Google Play will handle it for you automatically. Plus this approach can provide additional benefits. For more details: https://developer.android.com/guide/app-bundle
Building the LibVLC Android SDK yourself
If you are using
"de.mrmaffen:vlc-android-sdk:2.0.6"
, buid the LibVLC Android SDK yourselfBuilding a specific version of the LibVLC Android SDK
Make sure you followed the Android compile instructions in terms of dependencies and check this:
Get it via Maven CentralJCenter
I'm using this version. Remember to add JCenter to your project's
build.gradle
file:VLC Android SDK via JCenter supports the next ABIs: armeabi-v7a, arm64-v8a, x86 and x86_64.
You can filter specific ABIs in your app's
build.gradle
file (x86_64 and arm64-v8a are excluded):It's possible to check included files in mrmaffen's repository and via recent Android Studio versions:
Configure multiple APKs for ABIs
Build multiple APKs
Configure Build Variants
This page builds on the Configure Your Build Overview to show you how you can configure build variants to create different versions of your app.
Combine abi filters and build variants
Exclude abi from apk
Multi-APK through ABI and density splits
How to reduce the number of APKs with ABI splits
Recommended Medium post to choose supported ABIs
Solve UnsatisfiedLinkError Problem on some devices
As explained here, 64-bit processors generate and check arm64 folder to load native libraries.
If your project does not have arm64 folder. Here is the solution:
build.gradle
gradle.properties