Unsatisfiedlinkerror Arcgis 10.2.3 Android Arcgisruntime.setclientid
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"