When I add followings in build.gradle I get errors as below.
I wonder how I can handle this problem.
Thanks!
// in build.gradle
splits{
abi{
enable true
reset()
include 'armeabi'
}
}
// error logs
java.lang.UnsatisfiedLinkError: Couldn't load c++_shared from loader dalvik.system.PathClassLoader[dexPath=/data/app/com......-57.apk,libraryPath=/data/app-lib/com.......-57]: findLibrary returned null
01-25 10:00:33.732 5786-5786/? W/System.err: at java.lang.Runtime.loadLibrary(Runtime.java:358)
01-25 10:00:33.732 5786-5786/? W/System.err: at java.lang.System.loadLibrary(System.java:526)
01-25 10:00:33.732 5786-5786/? W/System.err: at com.myscript.atk.core.ATKCoreJNI.clinit(ATKCoreJNI.java:24)
01-25 10:00:33.732 5786-5786/? W/System.err: at com.myscript.atk.core.ATKCoreJNI.<clinit>(ATKCoreJNI.java:44)
HK Kim
Hello,
When I add followings in build.gradle I get errors as below.
I wonder how I can handle this problem.
Thanks!
// in build.gradle
splits{
abi{
enable true
reset()
include 'armeabi'
}
}
// error logs
java.lang.UnsatisfiedLinkError: Couldn't load c++_shared from loader dalvik.system.PathClassLoader[dexPath=/data/app/com......-57.apk,libraryPath=/data/app-lib/com.......-57]: findLibrary returned null
01-25 10:00:33.732 5786-5786/? W/System.err: at java.lang.Runtime.loadLibrary(Runtime.java:358)
01-25 10:00:33.732 5786-5786/? W/System.err: at java.lang.System.loadLibrary(System.java:526)
01-25 10:00:33.732 5786-5786/? W/System.err: at com.myscript.atk.core.ATKCoreJNI.clinit(ATKCoreJNI.java:24)
01-25 10:00:33.732 5786-5786/? W/System.err: at com.myscript.atk.core.ATKCoreJNI.<clinit>(ATKCoreJNI.java:44)