fix bug of locationService

This commit is contained in:
zhongchao
2021-06-10 15:05:34 +08:00
parent 8eef524e7e
commit c0769443ff

View File

@@ -49,7 +49,7 @@ class MogoLocationInfoService implements IMogoLocationInfoService {
public void init( Context context ) {
try {
Class< ? > clazz = Class.forName( "com.mogo.base.services.locationinfo.MogoLocationInfoServices" );
Class< ? > clazz = Class.forName( "com.mogo.aicloud.services.locationinfo.MogoLocationInfoServices" );
Method getInstanceMethod = clazz.getMethod( "getInstance" );
getInstanceMethod.setAccessible( true );
mDelegate = ( IMogoLocationInfoService ) getInstanceMethod.invoke( null );