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
You have to make your activity implement AsyncUiCallback or use an instance of AsyncUiCallback and override the methods in there. You can find an example of that in the implementation app.
@OverRide
public void callbackWithReturnValue(Boolean result) {
String message = result ? "Success" : "Failed!";
Toast.makeText(this,message,Toast.LENGTH_SHORT).show();
}
In this code @OverRide doesnt work (my IDE doesnt let me do it)
The text was updated successfully, but these errors were encountered: