Commit 933baf7c53a1c79002ecfd05ea7479328003fd73

Authored by 杨帅
1 parent f2c586c3

1 优化安装包体积

2 格式化代码
Showing 100 changed files with 108 additions and 138 deletions

Too many changes to show.

To preserve performance only 100 of 326 files are displayed.

app/build.gradle
... ... @@ -9,7 +9,7 @@ android {
9 9 compileSdkVersion 28
10 10 defaultConfig {
11 11 applicationId "com.cnlive.strike"
12   - minSdkVersion 16
  12 + minSdkVersion 18
13 13 targetSdkVersion 27
14 14 versionCode 1
15 15 versionName "1.0"
... ...
app/src/main/java/com/example/modulepedometer/MainActivity.java
... ... @@ -9,6 +9,7 @@ import com.cnlive.moudle.collectionTrace.ui.activity.CollRunRaceDetailActivity;
9 9 import com.cnlive.moudle.collectionTrace.ui.activity.CollRunningFinishActivity;
10 10 import com.cnlive.moudle.collectionTrace.ui.activity.RaceListActivity;
11 11 import com.cnlive.moudle.collectionTrace.ui.activity.RaceNameListActivity;
  12 +import com.cnlive.moudle.pedometer.model.Constant;
12 13 import com.cnlive.moudle.pedometer.ui.activity.MyRecordActivity;
13 14 import com.cnlive.moudle.pedometer.ui.activity.RunLineActivity;
14 15 import com.cnlive.moudle.pedometer.ui.activity.SelfRecordActivity;
... ... @@ -20,6 +21,7 @@ public class MainActivity extends AppCompatActivity {
20 21 protected void onCreate(Bundle savedInstanceState) {
21 22 super.onCreate(savedInstanceState);
22 23 setContentView(R.layout.activity_main);
  24 +
23 25 String uid = "358916";
24 26 findViewById(R.id.recordd).setOnClickListener(new View.OnClickListener() {
25 27 @Override
... ...
app/src/main/java/com/example/modulepedometer/MyApp.java
... ... @@ -6,6 +6,7 @@ import com.alibaba.android.arouter.launcher.ARouter;
6 6 import com.baidu.mapapi.CoordType;
7 7 import com.baidu.mapapi.SDKInitializer;
8 8 import com.cnlive.libs.base.application.AppConfig;
  9 +import com.cnlive.moudle.pedometer.model.Constant;
9 10  
10 11 public class MyApp extends Application {
11 12 @Override
... ... @@ -15,6 +16,11 @@ public class MyApp extends Application {
15 16 AppConfig.init(getApplicationContext(), BuildConfig.APP_ID, BuildConfig.APP_KEY, BuildConfig.APP_SCERET,
16 17 0, BuildConfig.DEBUG, "", "",
17 18 userId, "", "", "", "", "", "", "", BuildConfig.BAIDU_MAP_APP_KEY);
  19 + if (AppConfig.isDebug()) {
  20 + Constant.SERVICE_ID = 213511;
  21 + } else {
  22 + Constant.SERVICE_ID = 214690;
  23 + }
18 24 initARouter();
19 25 //在使用SDK各组件之前初始化context信息,传入ApplicationContext
20 26 SDKInitializer.initialize(getApplicationContext());
... ...
build.gradle
... ... @@ -53,7 +53,7 @@ ext {
53 53  
54 54 compileSdkVersion = 28
55 55 buildToolsVersion = "28.0.3"
56   - minSdkVersion = 16
  56 + minSdkVersion = 18
57 57 targetSdkVersion = 27
58 58  
59 59 //support 相关
... ...
config.gradle
... ... @@ -21,7 +21,7 @@ ext {
21 21 //编译方式
22 22 debug : false,
23 23 //版本号
24   - version: "0.6.5",
  24 + version: "0.6.6",
25 25 //Lib库前缀
26 26 packeg : "com.cnlive.module",
27 27 //Lib库名称
... ...
moudle_pedometer/src/main/java/com/cnlive/moudle/collectionTrace/commonInfo/CollCommonInfo.java
... ... @@ -5,6 +5,19 @@ import android.content.Context;
5 5 import com.cnlive.moudle.pedometer.utils.MySpHelper;
6 6  
7 7 public class CollCommonInfo {
  8 + private static final String KEY_USER_ID = "collUserId";//用户ID
  9 + private static final String KEY_STEP_START_TIME = "collStepStartTime";//服务启动时间
  10 + private static final String KEY_WRITE_USER_STEP = "collWriteUserStep";//是否向数据库写入数据
  11 + private static final String KEY_IS_RUN_STEP_SERVICE = "collRunStepService";//是否运行计步服务
  12 + private static final String KEY_IS_RUN_KEEP_ALIVE_SERVICE = "collKeepAliveService";//是否运行保活服务
  13 + private static final String KEY_STREET_ID = "collStreetId";//赛事ID
  14 + private static final String KEY_IS_RUN_BAIDU_TRACE_SERVICE = "collRunBaiduTraceService";//是否运行百度鹰眼服务
  15 + private static final String KEY_IS_FIRST_STEP_SEND_TRACE_TIP = "collFirstStepSendTraceTip";//是否第一次启动鹰眼服务
  16 + private static final String KEY_USER_NICK_NAME = "collRunUserNickName";//用户昵称
  17 + private static final String KEY_USER_NICK_ICON = "collRunUserNickIcon";//用户头像
  18 +
  19 +
  20 +
8 21  
9 22 /**
10 23 * 设置计步时间
... ... @@ -12,7 +25,7 @@ public class CollCommonInfo {
12 25 * @param context
13 26 */
14 27 public static void setStepStartTime(Context context, long currentTime) {
15   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putLong("CollstepStartTime", currentTime);
  28 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putLong(KEY_STEP_START_TIME, currentTime);
16 29 }
17 30  
18 31 /**
... ... @@ -21,7 +34,7 @@ public class CollCommonInfo {
21 34 * @param context
22 35 */
23 36 public static long getStepStartTime(Context context) {
24   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getLong("CollstepStartTime", 0);
  37 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getLong(KEY_STEP_START_TIME, 0);
25 38 }
26 39  
27 40 /**
... ... @@ -30,7 +43,7 @@ public class CollCommonInfo {
30 43 * @param context
31 44 */
32 45 public static void setIsWriteUserStep(Context context, boolean isAllow) {
33   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean("CollwriteUserStep:", isAllow);
  46 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean(KEY_WRITE_USER_STEP, isAllow);
34 47 }
35 48  
36 49 /**
... ... @@ -39,7 +52,7 @@ public class CollCommonInfo {
39 52 * @param context
40 53 */
41 54 public static boolean getIsWriteUserStep(Context context) {
42   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean("CollwriteUserStep", true);
  55 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean(KEY_WRITE_USER_STEP, true);
43 56 }
44 57  
45 58 /**
... ... @@ -47,14 +60,14 @@ public class CollCommonInfo {
47 60 * @param uid
48 61 */
49 62 public static void setUserId(Context context, String uid) {
50   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString("ColluserId", uid);
  63 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString(KEY_USER_ID, uid);
51 64 }
52 65  
53 66 /**
54 67 * @param context
55 68 */
56 69 public static String getUserId(Context context) {
57   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString("ColluserId", "");
  70 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString(KEY_USER_ID, "");
58 71 }
59 72  
60 73 /**
... ... @@ -64,7 +77,7 @@ public class CollCommonInfo {
64 77 * @param isAllow
65 78 */
66 79 public static void setIsRunStepService(Context context, boolean isAllow) {
67   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean("CollrunStepService", isAllow);
  80 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean(KEY_IS_RUN_STEP_SERVICE, isAllow);
68 81  
69 82 }
70 83  
... ... @@ -75,7 +88,7 @@ public class CollCommonInfo {
75 88 * @param isAllow
76 89 */
77 90 public static void setIsRunKeepAliveService(Context context, boolean isAllow) {
78   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean("CollKeepAliveService", isAllow);
  91 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean(KEY_IS_RUN_KEEP_ALIVE_SERVICE, isAllow);
79 92  
80 93 }
81 94  
... ... @@ -85,7 +98,7 @@ public class CollCommonInfo {
85 98 * @param context
86 99 */
87 100 public static boolean getIsRunKeepAliveService(Context context) {
88   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean("CollKeepAliveService", false);
  101 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean(KEY_IS_RUN_KEEP_ALIVE_SERVICE, false);
89 102 }
90 103  
91 104 /**
... ... @@ -94,7 +107,7 @@ public class CollCommonInfo {
94 107 * @param context
95 108 */
96 109 public static boolean getIsRunStepService(Context context) {
97   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean("CollrunStepService", false);
  110 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean(KEY_IS_RUN_STEP_SERVICE, false);
98 111 }
99 112  
100 113 /**
... ... @@ -104,7 +117,7 @@ public class CollCommonInfo {
104 117 * @param streetId
105 118 */
106 119 public static void setStreetId(Context context, String streetId) {
107   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString("CollstreetId", streetId);
  120 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString(KEY_STREET_ID, streetId);
108 121 }
109 122  
110 123 /**
... ... @@ -113,7 +126,7 @@ public class CollCommonInfo {
113 126 * @param context
114 127 */
115 128 public static String getStreetId(Context context) {
116   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString("CollstreetId", "");
  129 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString(KEY_STREET_ID, "");
117 130 }
118 131  
119 132 /**
... ... @@ -123,7 +136,7 @@ public class CollCommonInfo {
123 136 * @param isRun
124 137 */
125 138 public static void setTsRunBaiduTraceService(Context context, boolean isRun) {
126   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean("CollRunBaiduTraceService", isRun);
  139 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean(KEY_IS_RUN_BAIDU_TRACE_SERVICE, isRun);
127 140 }
128 141  
129 142 /**
... ... @@ -132,7 +145,7 @@ public class CollCommonInfo {
132 145 * @param context
133 146 */
134 147 public static boolean getIsRunBaiduTraceService(Context context) {
135   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean("CollRunBaiduTraceService", true);
  148 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean(KEY_IS_RUN_BAIDU_TRACE_SERVICE, true);
136 149 }
137 150  
138 151 /**
... ... @@ -142,7 +155,7 @@ public class CollCommonInfo {
142 155 * @param isAllow
143 156 */
144 157 public static void setIsFirstStepSendTraceTip(Context context, boolean isAllow) {
145   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean("CollFirstStepSendTraceTip", isAllow);
  158 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean(KEY_IS_FIRST_STEP_SEND_TRACE_TIP, isAllow);
146 159 }
147 160  
148 161 /**
... ... @@ -152,7 +165,7 @@ public class CollCommonInfo {
152 165 * @param context
153 166 */
154 167 public static boolean getIsFirstStepSendTraceTip(Context context) {
155   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean("CollFirstStepSendTraceTip", true);
  168 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean(KEY_IS_FIRST_STEP_SEND_TRACE_TIP, true);
156 169 }
157 170  
158 171 /**
... ... @@ -162,7 +175,7 @@ public class CollCommonInfo {
162 175 * @param nickName
163 176 */
164 177 public static void setUserNickName(Context context, String nickName) {
165   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString("CollRunUserNickName", nickName);
  178 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString(KEY_USER_NICK_NAME, nickName);
166 179  
167 180 }
168 181  
... ... @@ -172,7 +185,7 @@ public class CollCommonInfo {
172 185 * @param context
173 186 */
174 187 public static String getUserNickName(Context context) {
175   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString("CollRunUserNickName", "");
  188 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString(KEY_USER_NICK_NAME, "");
176 189  
177 190 }
178 191  
... ... @@ -183,7 +196,7 @@ public class CollCommonInfo {
183 196 * @param userIcon
184 197 */
185 198 public static void setUserIcon(Context context, String userIcon) {
186   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString("CollRunUserNickIcon", userIcon);
  199 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString(KEY_USER_NICK_ICON, userIcon);
187 200  
188 201 }
189 202  
... ... @@ -193,7 +206,7 @@ public class CollCommonInfo {
193 206 * @param context
194 207 */
195 208 public static String getUserIcon(Context context) {
196   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString("CollRunUserNickIcon", "");
  209 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString(KEY_USER_NICK_ICON, "");
197 210  
198 211 }
199 212  
... ... @@ -202,13 +215,13 @@ public class CollCommonInfo {
202 215 * @param context
203 216 */
204 217 public static void reset(Context context) {
205   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("CollwriteUserStep");
206   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("CollstepStartTime");
207   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("CollrunStepService");
208   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("CollstepStartTime");
209   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("CollKeepAliveService");
210   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("CollRunBaiduTraceService");
211   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("CollFirstStepSendTraceTip");
  218 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_WRITE_USER_STEP);
  219 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_STEP_START_TIME);
  220 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_IS_RUN_STEP_SERVICE);
  221 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_STEP_START_TIME);
  222 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_IS_RUN_KEEP_ALIVE_SERVICE);
  223 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_IS_RUN_BAIDU_TRACE_SERVICE);
  224 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_IS_FIRST_STEP_SEND_TRACE_TIP);
212 225 }
213 226  
214 227  
... ...
moudle_pedometer/src/main/java/com/cnlive/moudle/pedometer/commonInfo/CommonInfo.java
... ... @@ -6,24 +6,19 @@ import com.cnlive.moudle.pedometer.utils.MySpHelper;
6 6 import com.cnlive.moudle.pedometer.utils.TimeUtil;
7 7  
8 8 public class CommonInfo {
9   -
10   -// /**
11   -// * 设置计步时间
12   -// *
13   -// * @param context
14   -// */
15   -// public static void setStepStartTime(Context context, long currentTime) {
16   -// MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putLong("stepStartTime", currentTime);
17   -// }
18   -//
19   -// /**
20   -// * 获取计步时间
21   -// *
22   -// * @param context
23   -// */
24   -// public static long getStepStartTime(Context context) {
25   -// return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getLong("stepStartTime", 0);
26   -// }
  9 + private static final String KEY_USER_ID = "runUserId";//用户ID
  10 + private static final String KEY_WRITE_USER_STEP = "runWriteUserStep";//是否允许写入步数
  11 + private static final String KEY_RUN_WRITE_USER_STEP = "runStepService";//是否运行计步服务
  12 + private static final String KEY_KEEP_ALIVE_SERVICE = "runKeepAliveService";//是否运行保活服务
  13 + private static final String KEY_EVENT_ID = "runStreetId";//赛事id
  14 + private static final String KEY_RUN_BAIDU_TRACE_SERVICE = "runBaiduTraceService";//是否运行百度服务
  15 + private static final String KEY_FIRST_STEP_SEND_TIP = "runFirstStepSendTraceTip";//是否是第一次启动鹰眼服务
  16 + private static final String KEY_FENCE_ID = "runFenceId";//围栏ID
  17 + private static final String KEY_USER_NICK_NAME = "runUserNickName";//用户昵称
  18 + private static final String KEY_USER_NICK_ICON = "runUserNickIcon";//用户头像
  19 + private static final String KEY_USER_PHONE = "runUserPhone";//用户电话
  20 + private static final String KEY_IS_FIRST_SHOW_TIME_TIP = "runIsFirstShowTimeTip";//是否是第一次显示倒计时
  21 + private static final String KEY_IS_PAUSE_STATE = "runIsPauseState";//是否点击暂停按钮
27 22  
28 23  
29 24 /**
... ... @@ -32,7 +27,7 @@ public class CommonInfo {
32 27 * @param context
33 28 */
34 29 public static void setIsWriteUserStep(Context context, boolean isAllow) {
35   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean("writeUserStep:", isAllow);
  30 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean(KEY_WRITE_USER_STEP, isAllow);
36 31 }
37 32  
38 33 /**
... ... @@ -41,7 +36,7 @@ public class CommonInfo {
41 36 * @param context
42 37 */
43 38 public static boolean getIsWriteUserStep(Context context) {
44   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean("writeUserStep", true);
  39 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean(KEY_WRITE_USER_STEP, true);
45 40 }
46 41  
47 42 /**
... ... @@ -49,14 +44,14 @@ public class CommonInfo {
49 44 * @param uid
50 45 */
51 46 public static void setUserId(Context context, String uid) {
52   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString("userId", uid);
  47 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString(KEY_USER_ID, uid);
53 48 }
54 49  
55 50 /**
56 51 * @param context
57 52 */
58 53 public static String getUserId(Context context) {
59   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString("userId", "");
  54 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString(KEY_USER_ID, "");
60 55 }
61 56  
62 57 /**
... ... @@ -66,7 +61,7 @@ public class CommonInfo {
66 61 * @param isAllow
67 62 */
68 63 public static void setIsRunStepService(Context context, boolean isAllow) {
69   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean("runStepService", isAllow);
  64 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean(KEY_RUN_WRITE_USER_STEP, isAllow);
70 65  
71 66 }
72 67  
... ... @@ -77,7 +72,7 @@ public class CommonInfo {
77 72 * @param isAllow
78 73 */
79 74 public static void setIsRunKeepAliveService(Context context, boolean isAllow) {
80   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean("KeepAliveService", isAllow);
  75 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean(KEY_KEEP_ALIVE_SERVICE, isAllow);
81 76  
82 77 }
83 78  
... ... @@ -87,7 +82,7 @@ public class CommonInfo {
87 82 * @param context
88 83 */
89 84 public static boolean getIsRunKeepAliveService(Context context) {
90   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean("KeepAliveService", false);
  85 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean(KEY_KEEP_ALIVE_SERVICE, false);
91 86 }
92 87  
93 88 /**
... ... @@ -96,7 +91,7 @@ public class CommonInfo {
96 91 * @param context
97 92 */
98 93 public static boolean getIsRunStepService(Context context) {
99   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean("runStepService", false);
  94 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean(KEY_RUN_WRITE_USER_STEP, false);
100 95 }
101 96  
102 97 /**
... ... @@ -106,7 +101,7 @@ public class CommonInfo {
106 101 * @param streetId
107 102 */
108 103 public static void setStreetId(Context context, String streetId) {
109   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString("streetId", streetId);
  104 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString(KEY_EVENT_ID, streetId);
110 105 }
111 106  
112 107 /**
... ... @@ -115,7 +110,7 @@ public class CommonInfo {
115 110 * @param context
116 111 */
117 112 public static String getStreetId(Context context) {
118   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString("streetId", "");
  113 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString(KEY_EVENT_ID, "");
119 114 }
120 115  
121 116 /**
... ... @@ -125,7 +120,7 @@ public class CommonInfo {
125 120 * @param isRun
126 121 */
127 122 public static void setTsRunBaiduTraceService(Context context, boolean isRun) {
128   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean("RunBaiduTraceService", isRun);
  123 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean(KEY_RUN_BAIDU_TRACE_SERVICE, isRun);
129 124 }
130 125  
131 126 /**
... ... @@ -134,7 +129,7 @@ public class CommonInfo {
134 129 * @param context
135 130 */
136 131 public static boolean getIsRunBaiduTraceService(Context context) {
137   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean("RunBaiduTraceService", true);
  132 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean(KEY_RUN_BAIDU_TRACE_SERVICE, true);
138 133 }
139 134  
140 135 /**
... ... @@ -144,7 +139,7 @@ public class CommonInfo {
144 139 * @param isAllow
145 140 */
146 141 public static void setIsFirstStepSendTraceTip(Context context, boolean isAllow) {
147   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean("FirstStepSendTraceTip", isAllow);
  142 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean(KEY_FIRST_STEP_SEND_TIP, isAllow);
148 143 }
149 144  
150 145 /**
... ... @@ -154,7 +149,7 @@ public class CommonInfo {
154 149 * @param context
155 150 */
156 151 public static boolean getIsFirstStepSendTraceTip(Context context) {
157   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean("FirstStepSendTraceTip", true);
  152 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean(KEY_FIRST_STEP_SEND_TIP, true);
158 153 }
159 154  
160 155 /**
... ... @@ -164,7 +159,7 @@ public class CommonInfo {
164 159 * @param id
165 160 */
166 161 public static void setFenceId(Context context, int id) {
167   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putInt("FenceId", id);
  162 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putInt(KEY_FENCE_ID, id);
168 163 }
169 164  
170 165 /**
... ... @@ -173,7 +168,7 @@ public class CommonInfo {
173 168 * @param context
174 169 */
175 170 public static int getFenceId(Context context) {
176   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getInt("FenceId", -1);
  171 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getInt(KEY_FENCE_ID, -1);
177 172 }
178 173  
179 174 /**
... ... @@ -183,7 +178,7 @@ public class CommonInfo {
183 178 * @param nickName
184 179 */
185 180 public static void setUserNickName(Context context, String nickName) {
186   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString("RunUserNickName", nickName);
  181 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString(KEY_USER_NICK_NAME, nickName);
187 182  
188 183 }
189 184  
... ... @@ -193,7 +188,7 @@ public class CommonInfo {
193 188 * @param context
194 189 */
195 190 public static String getUserNickName(Context context) {
196   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString("RunUserNickName", "");
  191 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString(KEY_USER_NICK_NAME, "");
197 192  
198 193 }
199 194  
... ... @@ -204,7 +199,7 @@ public class CommonInfo {
204 199 * @param userIcon
205 200 */
206 201 public static void setUserIcon(Context context, String userIcon) {
207   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString("RunUserNickIcon", userIcon);
  202 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString(KEY_USER_NICK_ICON, userIcon);
208 203  
209 204 }
210 205  
... ... @@ -214,7 +209,7 @@ public class CommonInfo {
214 209 * @param context
215 210 */
216 211 public static String getUserIcon(Context context) {
217   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString("RunUserNickIcon", "");
  212 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString(KEY_USER_NICK_ICON, "");
218 213  
219 214 }
220 215  
... ... @@ -225,7 +220,7 @@ public class CommonInfo {
225 220 * @param userIcon
226 221 */
227 222 public static void setUserPhone(Context context, String userIcon) {
228   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString("RunUserPhone", userIcon);
  223 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString(KEY_USER_PHONE, userIcon);
229 224  
230 225 }
231 226  
... ... @@ -235,7 +230,7 @@ public class CommonInfo {
235 230 * @param context
236 231 */
237 232 public static String getUserPhone(Context context) {
238   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString("RunUserPhone", "");
  233 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString(KEY_USER_PHONE, "");
239 234  
240 235 }
241 236  
... ... @@ -247,7 +242,7 @@ public class CommonInfo {
247 242 * @param isAllow
248 243 */
249 244 public static void setIsFirstShowTimeTip(Context context, boolean isAllow) {
250   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean("IsFirstShowTimeTip", isAllow);
  245 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean(KEY_IS_FIRST_SHOW_TIME_TIP, isAllow);
251 246 }
252 247  
253 248 /**
... ... @@ -256,7 +251,7 @@ public class CommonInfo {
256 251 * @param context
257 252 */
258 253 public static boolean getIsFirstShowTimeTip(Context context) {
259   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean("IsFirstShowTimeTip", true);
  254 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean(KEY_IS_FIRST_SHOW_TIME_TIP, true);
260 255 }
261 256  
262 257 /**
... ... @@ -266,7 +261,7 @@ public class CommonInfo {
266 261 * @param isAllow
267 262 */
268 263 public static void setIsPauseState(Context context, boolean isAllow) {
269   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean("runIsPauseState", isAllow);
  264 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putBoolean(KEY_IS_PAUSE_STATE, isAllow);
270 265 }
271 266  
272 267 /**
... ... @@ -275,68 +270,23 @@ public class CommonInfo {
275 270 * @param context
276 271 */
277 272 public static boolean getIsPause(Context context) {
278   - return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean("runIsPauseState", false);
  273 + return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getBoolean(KEY_IS_PAUSE_STATE, false);
279 274 }
280 275  
281   -
282   -// /**
283   -// * 设置赛事标题
284   -// *
285   -// * @param context
286   -// * @param streetTitle
287   -// */
288   -// public static void setStreetTitle(Context context, String streetTitle) {
289   -// MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString("runStreetTitle", streetTitle);
290   -//
291   -// }
292   -//
293   -// /**
294   -// * 获取赛事标题
295   -// *
296   -// * @param context
297   -// */
298   -// public static String getStreetTitle(Context context) {
299   -// return MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).getString("runStreetTitle", "");
300   -//
301   -// }
302   -
303   - // /**
304   -// * 设置起点经纬度
305   -// *
306   -// * @param context
307   -// * @param startLatLng
308   -// */
309   -// public static void setStartLatLng(Context context, String startLatLng) {
310   -// MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString("runStartLatLng", startLatLng);
311   -//
312   -// }
313   -//
314   -// /**
315   -// * 设置终点经纬度
316   -// *
317   -// * @param context
318   -// * @param endLatLng
319   -// */
320   -// public static void setEndLatLng(Context context, String endLatLng) {
321   -// MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).putString("runEndLatLng", endLatLng);
322   -//
323   -// }
324 276 /*重置
325 277 * @param context
326 278 */
327 279 public static void reset(Context context) {
328 280  
329   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("IsFirstShowTimeTip");
330   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("writeUserStep");
331   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("runStepService");
332   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("KeepAliveService");
333   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("RunBaiduTraceService");
334   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("streetId");
335   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("FirstStepSendTraceTip");
336   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("FenceId");
337   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("IsFirstShowTimeTip");
338   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("runIsPauseState");
339   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("runStreetTitle");
  281 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_WRITE_USER_STEP);
  282 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_RUN_WRITE_USER_STEP);
  283 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_KEEP_ALIVE_SERVICE);
  284 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_RUN_BAIDU_TRACE_SERVICE);
  285 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_EVENT_ID);
  286 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_FIRST_STEP_SEND_TIP);
  287 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_FENCE_ID);
  288 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_IS_FIRST_SHOW_TIME_TIP);
  289 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_IS_PAUSE_STATE);
340 290  
341 291  
342 292 }
... ... @@ -345,14 +295,13 @@ public class CommonInfo {
345 295 * @param context
346 296 */
347 297 public static void resetRace(Context context) {
348   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("IsFirstShowTimeTip");
349   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("writeUserStep");
350   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("runStepService");
351   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("KeepAliveService");
352   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("RunBaiduTraceService");
353   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("FirstStepSendTraceTip");
354   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("IsFirstShowTimeTip");
355   - MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey("runIsPauseState");
  298 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_WRITE_USER_STEP);
  299 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_RUN_WRITE_USER_STEP);
  300 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_KEEP_ALIVE_SERVICE);
  301 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_RUN_BAIDU_TRACE_SERVICE);
  302 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_FIRST_STEP_SEND_TIP);
  303 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_IS_FIRST_SHOW_TIME_TIP);
  304 + MySpHelper.getInstance(context, Context.MODE_MULTI_PROCESS).removeKey(KEY_IS_PAUSE_STATE);
356 305  
357 306 }
358 307 }
... ...
moudle_pedometer/src/main/java/com/cnlive/moudle/pedometer/model/Constant.java
... ... @@ -25,7 +25,7 @@ public class Constant {
25 25  
26 26  
27 27 /*************************************用户其他值,非标志位************************************************************/
28   - public static final long SERVICE_ID = 213511;//公司账号
  28 + public static long SERVICE_ID = 0;//公司账号
29 29 // public static final long SERVICE_ID = 213553;
30 30 public static final int TAG = 1;
31 31 public static final int GATHER_INTERVAL = 2;//位置采集周期
... ... @@ -38,7 +38,7 @@ public class Constant {
38 38 public static final int CHECK_ACCURACY = 50;//判断用户是否完成的精度范围
39 39 public static final int LOCA_ACCURACY = 20;//定位过滤精度
40 40 public static final int LOCA_END_POINT_ACCURACY = 20;//终点位置比较精度
41   - public static final int LOCA_START_POINT_ACCURACY = 20;//起点位置比较精度
  41 + public static final int LOCA_START_POINT_ACCURACY = 200;//起点位置比较精度
42 42 public static final int FENCE_OFFSET = 50;//围栏偏离距离
43 43 public static final int FENCE_DENOISE = 20;//围栏去噪精度
44 44 public static final int TAKE_POINT_MAX_SIZE = 100;//最大打点数量
... ...
moudle_pedometer/src/main/res/drawable-hdpi/background.png deleted 100644 → 0

3.67 KB

moudle_pedometer/src/main/res/drawable-hdpi/background.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/bg_bg.png deleted 100644 → 0

3.49 KB

moudle_pedometer/src/main/res/drawable-hdpi/bg_bg.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/bg_tips_bottom_center.png deleted 100644 → 0

765 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/bg_tips_bottom_center.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/bmcg.png deleted 100644 → 0

14.1 KB

moudle_pedometer/src/main/res/drawable-hdpi/bmcg.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/bmcg_has.png deleted 100644 → 0

14.5 KB

moudle_pedometer/src/main/res/drawable-hdpi/bmcg_has.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/bmcg_no.png deleted 100644 → 0

14 KB

moudle_pedometer/src/main/res/drawable-hdpi/bmcg_no.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/bmcg_tak.png deleted 100644 → 0

14.4 KB

moudle_pedometer/src/main/res/drawable-hdpi/bmcg_tak.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/circle_point_raduis.png deleted 100644 → 0

2.73 KB

moudle_pedometer/src/main/res/drawable-hdpi/circle_point_raduis.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/circle_white_shadow_bg.png deleted 100644 → 0

2.03 KB

moudle_pedometer/src/main/res/drawable-hdpi/circle_white_shadow_bg.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/crown.png deleted 100644 → 0

915 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/crown.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/gps_tip_bg.png deleted 100644 → 0

1.38 KB

moudle_pedometer/src/main/res/drawable-hdpi/gps_tip_bg.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/gps_white_shadow.png deleted 100644 → 0

1.62 KB

moudle_pedometer/src/main/res/drawable-hdpi/gps_white_shadow.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/icon_back.png deleted 100644 → 0

702 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/icon_back.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/icon_end.png deleted 100644 → 0

2.85 KB

moudle_pedometer/src/main/res/drawable-hdpi/icon_end.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/icon_map_import.png deleted 100644 → 0

1.45 KB

moudle_pedometer/src/main/res/drawable-hdpi/icon_map_import.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/icon_no_fail_line.png deleted 100644 → 0

14.5 KB

moudle_pedometer/src/main/res/drawable-hdpi/icon_no_fail_line.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/icon_run_route.png deleted 100644 → 0

1.15 KB

moudle_pedometer/src/main/res/drawable-hdpi/icon_run_route.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/icon_share.png deleted 100644 → 0

974 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/icon_share.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/icon_slide_up.png deleted 100644 → 0

469 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/icon_slide_up.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/icon_start.png deleted 100644 → 0

2.97 KB

moudle_pedometer/src/main/res/drawable-hdpi/icon_start.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/icon_step.png deleted 100644 → 0

1.22 KB

moudle_pedometer/src/main/res/drawable-hdpi/icon_step.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/more.png deleted 100644 → 0

414 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/more.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/no_selected.png deleted 100644 → 0

931 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/no_selected.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/rt_ic_home_map.png deleted 100644 → 0

7.73 KB

moudle_pedometer/src/main/res/drawable-hdpi/rt_ic_home_map.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/rt_ic_location_blank.png deleted 100644 → 0

1.7 KB

moudle_pedometer/src/main/res/drawable-hdpi/rt_ic_location_blank.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/rt_training_button_pause.png deleted 100644 → 0

252 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/rt_training_button_pause.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/rt_training_button_stop.png deleted 100644 → 0

114 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/rt_training_button_stop.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/rt_training_gps_0.png deleted 100644 → 0

414 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/rt_training_gps_0.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/rt_training_gps_1.png deleted 100644 → 0

306 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/rt_training_gps_1.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/rt_training_gps_2.png deleted 100644 → 0

440 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/rt_training_gps_2.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/rt_training_gps_3.png deleted 100644 → 0

444 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/rt_training_gps_3.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/selected.png deleted 100644 → 0

1.38 KB

moudle_pedometer/src/main/res/drawable-hdpi/selected.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/share_background.png deleted 100644 → 0

208 KB

moudle_pedometer/src/main/res/drawable-hdpi/share_background.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/share_img.png deleted 100644 → 0

975 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/share_img.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/share_logo.png deleted 100644 → 0

8.58 KB

moudle_pedometer/src/main/res/drawable-hdpi/share_logo.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/speed.png deleted 100644 → 0

818 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/speed.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/sport_dropdown.png deleted 100644 → 0

322 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/sport_dropdown.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/sport_location.png deleted 100644 → 0

758 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/sport_location.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/sport_people.png deleted 100644 → 0

903 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/sport_people.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/sport_speed.png deleted 100644 → 0

1.8 KB

moudle_pedometer/src/main/res/drawable-hdpi/sport_speed.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/sport_step.png deleted 100644 → 0

2.02 KB

moudle_pedometer/src/main/res/drawable-hdpi/sport_step.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/sport_time.png deleted 100644 → 0

773 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/sport_time.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/sport_time_cost.png deleted 100644 → 0

1.86 KB

moudle_pedometer/src/main/res/drawable-hdpi/sport_time_cost.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/sport_type.png deleted 100644 → 0

652 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/sport_type.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/step.png deleted 100644 → 0

1014 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/step.webp 0 → 100644
No preview for this file type
moudle_pedometer/src/main/res/drawable-hdpi/time_cost.png deleted 100644 → 0

863 Bytes

moudle_pedometer/src/main/res/drawable-hdpi/time_cost.webp 0 → 100644
No preview for this file type