This commit is contained in:
wangcongtao
2020-01-08 15:23:15 +08:00
parent e1942cd041
commit 2b2e998421
2 changed files with 4 additions and 4 deletions

View File

@@ -45,7 +45,7 @@ ext {
// fresco
fresco : 'com.facebook.fresco:fresco:1.1.0',
// 公司服务 - 语音
aiassist : "com.zhidaoauto.common:service:1.0.4",
aiassist : "com.zhidaoauto.common:service:1.0.4.10",
// 公司服务 - 埋点
analytics : "com.elegant.analytics:analytics:1.1.19",

View File

@@ -51,7 +51,7 @@ public class EntranceFragment extends MvpFragment< EntranceView, EntrancePresent
private IMogoMapUIController mMApUIController;
private IMogoLocationClient mMogoLocationClient;
private IMogoNavi mMogoNavi;
IMogoFragmentManager fragmentManager;
private IMogoFragmentManager mMogoFragmentManager;
@Override
protected int getLayoutId() {
@@ -60,7 +60,7 @@ public class EntranceFragment extends MvpFragment< EntranceView, EntrancePresent
@Override
protected void initViews() {
fragmentManager = ( IMogoFragmentManager ) ARouter.getInstance().build( MogoServicePaths.PATH_FRAGMENT_MANAGER ).navigation();
mMogoFragmentManager = ( IMogoFragmentManager ) ARouter.getInstance().build( MogoServicePaths.PATH_FRAGMENT_MANAGER ).navigation();
mCommonAddress = findViewById( R.id.module_entrance_id_common_address );
@@ -69,7 +69,7 @@ public class EntranceFragment extends MvpFragment< EntranceView, EntrancePresent
Fragment fragment = ( Fragment ) ARouter.getInstance().build( MogoModulePaths.PATH_FRAGMENT_SEARCH ).navigation();
mSearch.setOnClickListener( view -> {
fragmentManager.push( new FragmentDescriptor.Builder().fragment( fragment ).tag( MogoModulePaths.PATH_FRAGMENT_SEARCH ).notifyMainModule( true ).build() );
mMogoFragmentManager.push( new FragmentDescriptor.Builder().fragment( fragment ).tag( MogoModulePaths.PATH_FRAGMENT_SEARCH ).notifyMainModule( true ).build() );
} );
mHome = findViewById( R.id.module_entrance_id_home );