This commit is contained in:
wangcongtao
2020-06-03 11:16:03 +08:00
parent ac7fd86306
commit c4d3d2f7e2
109 changed files with 612 additions and 70 deletions

View File

@@ -73,4 +73,17 @@ public class DebugConfig {
public static void setNetMode( int netMode ) {
DebugConfig.sNetMode = netMode;
}
/**
* 是否拉起位置服务
*/
private static boolean sLaunchLocationService = true;
public static boolean isLaunchLocationService() {
return sLaunchLocationService;
}
public static void setLaunchLocationService( boolean launchLocationService ) {
DebugConfig.sLaunchLocationService = launchLocationService;
}
}