File tree Expand file tree Collapse file tree 3 files changed +29
-6
lines changed
src/main/java/com/brian/csdnblog/util Expand file tree Collapse file tree 3 files changed +29
-6
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,29 @@ CodeBlog是为了方便在手机端阅读编程技术博文。集成展示了CSD
8
8
- 机器人陪聊;
9
9
- 文章推送;
10
10
11
+ ---
12
+ ####更新日志:
13
+ v1.3.75
14
+ 1 . 集成小米更新模块;
15
+ 2 . 优化首次打开博客卡顿;
16
+ 3 . 增加水波纹效果;
17
+
18
+ 1.3.74
19
+ 1 . 修复CSDN列表解析;
20
+ 2 . 修复首次加载X5内核ANR;
21
+ 3 . 源代码提交github,地址见关于页面;
22
+
23
+ 1.3.73
24
+ 1 . 优化X5内核加载;
25
+ 2 . 使用SwipeRefreshLayout;
26
+ 3 . 增加推送功能;
27
+
28
+ 1.3.72
29
+ 1 . 修复博文列表及内容解析出错;
30
+ 2 . 集成腾讯X5内核;
31
+ 3 . 优化UI;
32
+
33
+
11
34
---
12
35
使用到的技术点:
13
36
- Netroid(Volley拓展库)用于网络请求;
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ android {
16
16
applicationId " com.brian.csdnblog"
17
17
minSdkVersion 15
18
18
targetSdkVersion 23
19
- versionCode 74
20
- versionName " 1.3.74 "
19
+ versionCode 75
20
+ versionName " 1.3.75 "
21
21
multiDexEnabled true
22
22
vectorDrawables. useSupportLibrary = true
23
23
}
@@ -27,9 +27,9 @@ android {
27
27
}
28
28
release {
29
29
storeFile file(" ../release/brian.keystore" )
30
- storePassword ' huaman512 '
30
+ storePassword ' brian512 '
31
31
keyAlias ' 年少的风'
32
- keyPassword ' huaman512 '
32
+ keyPassword ' brian512 '
33
33
}
34
34
}
35
35
buildTypes {
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ public class LogUtil {
19
19
20
20
private static boolean LOGV = Config .isDebug ;
21
21
private static boolean LOGF = Config .isDebug ;
22
- private static boolean LOGD = true ;
23
- private static boolean LOGI = true ;
22
+ private static boolean LOGD = Config . isDebug ;
23
+ private static boolean LOGI = Config . isDebug ;
24
24
private static boolean LOGW = true ;
25
25
private static boolean LOGE = true ;
26
26
You can’t perform that action at this time.
0 commit comments