From a7bc9696a28838a09ec46a109f64dc504725e53c Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 30 Mar 2020 10:56:05 +0800 Subject: [PATCH] wait continue --- modules/mogo-module-apps/build.gradle | 2 ++ .../module/apps/applaunch/GuideShowLauncher.kt | 15 +++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 modules/mogo-module-apps/src/main/java/com/mogo/module/apps/applaunch/GuideShowLauncher.kt diff --git a/modules/mogo-module-apps/build.gradle b/modules/mogo-module-apps/build.gradle index 312c819552..6cc0e4af87 100644 --- a/modules/mogo-module-apps/build.gradle +++ b/modules/mogo-module-apps/build.gradle @@ -43,6 +43,8 @@ dependencies { implementation rootProject.ext.dependencies.material annotationProcessor rootProject.ext.dependencies.aroutercompiler implementation rootProject.ext.dependencies.androidxrecyclerview + implementation rootProject.ext.dependencies.guideshowprovider + if (Boolean.valueOf(RELEASE)) { implementation rootProject.ext.dependencies.mogomap implementation rootProject.ext.dependencies.mogomapapi diff --git a/modules/mogo-module-apps/src/main/java/com/mogo/module/apps/applaunch/GuideShowLauncher.kt b/modules/mogo-module-apps/src/main/java/com/mogo/module/apps/applaunch/GuideShowLauncher.kt new file mode 100644 index 0000000000..1ac9869b00 --- /dev/null +++ b/modules/mogo-module-apps/src/main/java/com/mogo/module/apps/applaunch/GuideShowLauncher.kt @@ -0,0 +1,15 @@ +package com.mogo.module.apps.applaunch + +import android.content.Context +import com.mogo.module.apps.model.AppInfo + +class GuideShowLauncher : BaseAppLauncher() { + + override fun launch(context: Context, appInfo: AppInfo) { + + } + + override fun destroy() { + + } +} \ No newline at end of file