implement asynchronous login to prevent several common crashes

This commit is contained in:
dkanada 2021-04-27 12:22:42 +09:00
commit 9f40b7281c
13 changed files with 235 additions and 53 deletions

View file

@ -0,0 +1,9 @@
package com.dkanada.gramophone.interfaces;
public interface StateListener {
void onStatePolling();
void onStateOnline();
void onStateOffline();
}