Fix first app request http dns is wrong

This commit is contained in:
董宏宇
2021-06-24 18:02:52 +08:00
parent d871b31954
commit f2589150e9
4 changed files with 89 additions and 12 deletions

View File

@@ -0,0 +1,17 @@
package com.mogo.commons.constants;
/**
* @author xiaoyuzhou
* @date 2021/6/24 5:09 下午
* <p>
* 本地存储使用的常量
*/
public class SharedPrefsConstants {
// 当前城市编码
public static final String LOCATION_CITY_CODE = "location_city_code";
// 当前城市经纬度
public static final String LOCATION_LATITUDE = "location_latitude";
public static final String LOCATION_LONGITUDE = "location_longitude";
}