1

After extending support for Android 6.0+.

The app is getting crash while playing video using VLC-SDK.

Previously we have make changes in SDK library a little bit as per our project need. Hence can't make changes in vlc-SDK.

I have tried the solutions as below:

  1. Adding ABI filters.
  2. Add gradle.properties file in project.
  3. Add android.useDeprecatedNdk=true; in gradle.properties
  4. Adding abi filters in build.gradle.
Abhijeet
  • 392
  • 2
  • 13
Maverick
  • 116
  • 11

1 Answers1

0

This means that the compiled abi binary specific for the device being run on is not found in the APK. As a start check the APK in Android Studio using APK Analyzer (or just drag the APK from inside app/build/outputs/apk/ to the middle) and see within the lib/ folder the abi's that have been compiled. If your device abi is not listed within the lib/ folder, then that's the cause of your error and should do further checking like within the generated build files if it's missing (usually within .externalNative).

ahasbini
  • 6,761
  • 2
  • 29
  • 45
  • We know that we are missing with those abis. But it will be helpful for us how did we resolve this .so generation issue. – Abhijeet Mar 15 '18 at 04:31