Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Crashlytics ndk changes the classloader path

I'm trying to configure crashlytics ndk according to the instructions here: https://fabric.io/downloads/gradle/ndk

After adding the ndk part to build.gradle, specifically these lines:

// NDK Kit
compile('com.crashlytics.sdk.android:crashlytics-ndk:1.1.2@aar') {
    transitive = true
}

my app crashes with the following stack trace:

11-11 18:48:36.779  28757-28757/com.example.myProj E/MyApp﹕ CustomExceptionHandler.uncaughtException: FATAL
    java.lang.UnsatisfiedLinkError: Couldn't load stlport_shared from loader dalvik.system.PathClassLoader[dexPath=/data/app/com.example.myProj-1.apk,libraryPath=/data/app-lib/com.example.myProj-1]: findLibrary returned null
            at java.lang.Runtime.loadLibrary(Runtime.java:365)
            at java.lang.System.loadLibrary(System.java:535)
            at net.sqlcipher.database.SQLiteDatabase.loadLibs(SQLiteDatabase.java:118)
            at net.sqlcipher.database.SQLiteDatabase.loadLibs(SQLiteDatabase.java:113)
            at com.example.myProj.Controller.AppWrapper.onCreate(AppWrapper.java:102)
            at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1000)
            at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4510)
            at android.app.ActivityThread.access$1300(ActivityThread.java:146)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1300)
            at android.os.Handler.dispatchMessage(Handler.java:99)
            at android.os.Looper.loop(Looper.java:137)
            at android.app.ActivityThread.main(ActivityThread.java:5171)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:511)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:797)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:564)
            at dalvik.system.NativeStart.main(Native Method)
11-11 18:48:36.779  28757-28757/com.example.myProj E/AndroidRuntime﹕ FATAL EXCEPTION: main
    java.lang.UnsatisfiedLinkError: Couldn't load stlport_shared from loader dalvik.system.PathClassLoader[dexPath=/data/app/com.example.myProj-1.apk,libraryPath=/data/app-lib/com.example.myProj-1]: findLibrary returned null
            at java.lang.Runtime.loadLibrary(Runtime.java:365)
            at java.lang.System.loadLibrary(System.java:535)
            at net.sqlcipher.database.SQLiteDatabase.loadLibs(SQLiteDatabase.java:118)
            at net.sqlcipher.database.SQLiteDatabase.loadLibs(SQLiteDatabase.java:113)
            at com.example.myProj.Controller.AppWrapper.onCreate(AppWrapper.java:102)
            at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1000)
            at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4510)
            at android.app.ActivityThread.access$1300(ActivityThread.java:146)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1300)
            at android.os.Handler.dispatchMessage(Handler.java:99)
            at android.os.Looper.loop(Looper.java:137)
            at android.app.ActivityThread.main(ActivityThread.java:5171)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:511)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:797)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:564)
            at dalvik.system.NativeStart.main(Native Method)

it seems that crashlytics changes the classloader path.

any ideas?

like image 264
ox_ Avatar asked Mar 15 '23 04:03

ox_


1 Answers

My issue was resolved by removing the other architectures.

Reference: https://docs.fabric.io/android/crashlytics/ndk.html#universal-aar

Which refers to: http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits#TOC-ABIs-Splits

Adding this specific part to build.gradle resolved my issue:

splits {
        abi {
            enable true
            reset()
            include 'armeabi'
            universalApk true
        }
    }
like image 95
ox_ Avatar answered Mar 25 '23 00:03

ox_