Package com.geouniq.android
Interface GeoUniq.IErrorListener
- Enclosing class:
- GeoUniq
public static interface GeoUniq.IErrorListener
Provides a callback method to be notified of errors after calling some GeoUniq SDK's API methods.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonError(GeoUniq.RequestResult requestResult) Callback method called when, after calling some specific GeoUniq SDK's API methods, the specific request is unsuccessful due to errors or missing features on the device.
-
Method Details
-
onError
Callback method called when, after calling some specific GeoUniq SDK's API methods, the specific request is unsuccessful due to errors or missing features on the device.
When receiving this callback, the application should check if the error has resolution by calling
GeoUniq.RequestResult.hasResolution()and in case callGeoUniq.RequestResult.startResolution(Activity)- Parameters:
requestResult- a member of theGeoUniq.RequestResultenumeration indicating the specific error that occurred.
-