Skip to content Skip to sidebar Skip to footer

Unsatisfiedlinkerror Arcgis 10.2.3 Android Arcgisruntime.setclientid

I'm having a problem with Arcgis SDK for Android which I've never had before. It seems an issue with its native interface when I call this method: ArcGISRuntime.setClientId I have

Solution 1:

UnsatisfiedLinkError normally means the application can't load a native library it needs, even though the Java wrapper for that library is present. If the Java wrapper were also missing, your code wouldn't compile.

Did you switch from an earlier version of ArcGIS to ArcGIS 10.2.3 in this project? If so, it is possible that the project still has the native libraries from the old version of ArcGIS, which didn't have a setClientId method, even though the project has the Java libraries from the new version of ArcGIS, which do have setClientId.

Assuming you're in Eclipse, right-click the project and choose ArcGIS Tools > Fix Project Properties. That should replace the old native libraries with the 10.2.3 native libraries.

Solution 2:

http://maroofi.github.io/ceal/ for removing watermark from screen

Post a Comment for "Unsatisfiedlinkerror Arcgis 10.2.3 Android Arcgisruntime.setclientid"