wait continue

This commit is contained in:
unknown
2020-03-30 10:56:05 +08:00
parent a4243e6340
commit a7bc9696a2
2 changed files with 17 additions and 0 deletions

View File

@@ -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

View File

@@ -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() {
}
}