mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
22 lines
556 B
Java
22 lines
556 B
Java
|
package nodomain.freeyourgadget.gadgetbridge;
|
||
|
|
||
|
public interface EventHandler {
|
||
|
public void onSMS(String from, String body);
|
||
|
|
||
|
public void onEmail(String from, String subject, String body);
|
||
|
|
||
|
public void onSetTime(long ts);
|
||
|
|
||
|
public void onSetCallState(String number, String name, GBCommand command);
|
||
|
|
||
|
public void onSetMusicInfo(String artist, String album, String track);
|
||
|
|
||
|
public void onFirmwareVersionReq();
|
||
|
|
||
|
public void onAppInfoReq();
|
||
|
|
||
|
public void onAppDelete(int id, int index);
|
||
|
|
||
|
public void onPhoneVersion(byte os);
|
||
|
}
|