This commit is contained in:
wangcongtao
2020-03-16 14:13:30 +08:00
parent f7eadb8792
commit 7afc046be2
19 changed files with 540 additions and 52 deletions

View File

@@ -0,0 +1,27 @@
package com.mogo.module.back;
import android.content.Context;
import com.alibaba.android.arouter.facade.annotation.Route;
import com.mogo.service.MogoServicePaths;
import com.mogo.service.launcher.IMogoLauncher;
/**
* @author congtaowang
* @since 2020-03-16
* <p>
* 描述
*/
@Route( path = MogoServicePaths.PATH_LAUNCHER_API )
public class MogoLauncher implements IMogoLauncher {
@Override
public void backToLauncher( Context context ) {
BackToMainHomeManager.backToLauncher();
}
@Override
public void init( Context context ) {
}
}