EditMobileNumber - LOMENT-SDK/sdk-cashew-android GitHub Wiki
Call this method if you want to edit the mobile number of the user on the server. This is accomplished by calling the UserManager().editMobileNumber() and passing in valid email ,mobile and countryID :
new UserManager().editMobileNumber( context, email, mobile, countryID, this);
The edit mobile number results are handled in the following callbacks:
@Override public void onEditMobileNumberSuccess(Context context, Bundle bundle) { //Handle Edit Mobile Number Success } @Override public void onError(final Context context, CNError error, Bundle bundle) { //Handle Edit Mobile Number Error }