Closed funkyfourier closed 5 years ago
So I finally found out that I had this in my setup routine:
PdBase.addToSearchPath("/data/data/" + context.getPackageName() + "/lib");
Changed it to this which I found in PdService.java:
PdBase.addToSearchPath(context.getApplicationInfo().nativeLibraryDir);
I guess this is a more reliable way of determining the correct path.
Some of my own externals are failing to run on devices with amd64-v8. They seem to compile fine and gets copied over to the apk in the right folder (armeabi-v7a, arm64-v8a etc). When I run my app on an older device everything runs fine.
The error message is "error: ... couldn't create" when the patch is run. I am on pd-core version 1.1.0.
Thanks for any suggestions.
My Application.mk:
In Android.mk:
Output from buildNatives: