Fix app asking for credential on every startup

This commit is contained in:
CappielloAntonio 2021-07-28 09:20:22 +02:00
parent a21a051cb5
commit 7bd2b10165
6 changed files with 116 additions and 52 deletions

View file

@ -0,0 +1,10 @@
package com.cappielloantonio.play.interfaces;
import java.util.List;
public interface SystemCallback {
void onError(Exception exception);
void onSuccess(String token, String salt);
}