You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moved the APK to /system/priv-app/ folder to install it as a system app. But getting an error like this when running traceroute - java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/system/priv-app/TraceRoute/app-release.apk"],nativeLibraryDirectories=[/system/priv-app/TraceRoute/lib/arm, /system/priv-app/TraceRoute/app-release.apk!/lib/armeabi-v7a, /system/lib, /product/lib, /system/lib, /product/lib]]] couldn't find "libtraceroute.so"
As per stack trace, the issue happens when the apk tries to load the traceroute binary file by calling System.loadLibrary("traceroute")
Tried this solution but still facing the same issue. Can you please help with resolving it?
The text was updated successfully, but these errors were encountered:
Moved the APK to /system/priv-app/ folder to install it as a system app. But getting an error like this when running traceroute -
java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/system/priv-app/TraceRoute/app-release.apk"],nativeLibraryDirectories=[/system/priv-app/TraceRoute/lib/arm, /system/priv-app/TraceRoute/app-release.apk!/lib/armeabi-v7a, /system/lib, /product/lib, /system/lib, /product/lib]]] couldn't find "libtraceroute.so"
As per stack trace, the issue happens when the apk tries to load the traceroute binary file by calling
System.loadLibrary("traceroute")
Tried this solution but still facing the same issue. Can you please help with resolving it?
The text was updated successfully, but these errors were encountered: