tempus/app/src/main/java/com/cappielloantonio/tempo/interfaces/ScanCallback.java

9 lines
233 B
Java

package com.cappielloantonio.tempo.interfaces;
import androidx.annotation.Keep;
@Keep
public interface ScanCallback {
default void onError(Exception exception) {}
default void onSuccess(boolean isScanning, long count) {}
}