changed the auth view interface impl

This commit is contained in:
unknown
2020-07-22 18:57:27 +08:00
parent cefcc6db84
commit dbf97f7a4a
7 changed files with 50 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
package com.mogo.service.auth;
import android.content.Context;
import com.mogo.service.module.IMogoModuleProvider;
public interface IMogoAuthManager extends IMogoModuleProvider {
/**
* 重置授权页面弹起时展示View Context
*/
void resetContext(Context context);
}