use of net.iGap.observers.interfaces.OnSecuring in project iGap-Android by KianIranian-STDG.
the class LoginActions method initSecureInterface.
/**
* initialize securing interface for detecting
* securing is done and continue login actions
*/
private void initSecureInterface() {
Log.wtf(this.getClass().getName(), "initSecureInterface");
G.onSecuring = new OnSecuring() {
@Override
public void onSecure() {
Log.wtf(this.getClass().getName(), "onSecure");
login();
}
};
}
Aggregations