This commit is contained in:
zhangyuanzhen
2020-02-17 18:26:08 +08:00
parent 26b35916a5
commit 72fd2c3619
2 changed files with 5 additions and 3 deletions

View File

@@ -29,14 +29,16 @@ dependencies {
api rootProject.ext.dependencies.amapnavi3dmap
api rootProject.ext.dependencies.amapsearch
api rootProject.ext.dependencies.amaplocation
compile project(path: ':foudations:mogo-commons')
if (Boolean.valueOf(RELEASE)) {
if (Boolean.valueOf(RELEASE)) {
implementation rootProject.ext.dependencies.mogoutils
implementation rootProject.ext.dependencies.mogomapapi
implementation rootProject.ext.dependencies.mogocommons
} else {
implementation project(':foudations:mogo-utils')
implementation project(':libraries:mogo-map-api')
implementation project(':foudations:mogo-commons')
}
}

View File

@@ -141,7 +141,7 @@ public class NaviClient implements IMogoNavi {
return;
}
// 关闭巡航
mAMapNavi.stopAimlessMode();
//mAMapNavi.stopAimlessMode();
mIsRealNavi = isRealNavi;
mAMapNavi.startNavi( isRealNavi ? NaviType.GPS : NaviType.EMULATOR );
}