Skip to content

Commit 3ff7852

Browse files
committed
see 04/01 log
1 parent 820ad84 commit 3ff7852

File tree

8 files changed

+9
-10
lines changed

8 files changed

+9
-10
lines changed

.github/workflows/android.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v2
1212
- name: set up JDK 1.8
1313
uses: actions/setup-java@v1
1414
with:

README-CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
[frame]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/auc_frame_cn.png
5353

54-
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.26.0-brightgreen.svg
54+
[aucSvg]: https://github.com/Blankj/AndroidUtilCode/workflows/Android%20CI/badge.svg?branch=master
5555
[auc]: https://github.com/Blankj/AndroidUtilCode
5656

5757
[apiSvg]: https://img.shields.io/badge/API-14+-brightgreen.svg

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ If this project helps you a lot and you want to support the project's developmen
5151

5252
[frame]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/auc_frame.png
5353

54-
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.27.0-brightgreen.svg
54+
[aucSvg]: https://github.com/Blankj/AndroidUtilCode/workflows/Android%20CI/badge.svg?branch=master
5555
[auc]: https://github.com/Blankj/AndroidUtilCode
5656

5757
[apiSvg]: https://img.shields.io/badge/API-14+-brightgreen.svg

buildSrc/src/main/groovy/Config.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class Config {
7171
free_proguard : new DepConfig("com.blankj:free-proguard:1.0.2"),
7272
swipe_panel : new DepConfig("com.blankj:swipe-panel:1.2"),
7373

74-
gson : new DepConfig("com.google.code.gson:gson:2.8.6"),
74+
gson : new DepConfig("com.google.code.gson:gson:2.8.5"),
7575
glide : new DepConfig("com.github.bumptech.glide:glide:4.7.1"),
7676
retrofit : new DepConfig("com.squareup.retrofit2:retrofit:2.4.0"),
7777
commons_io : new DepConfig("commons-io:commons-io:2.6"),

lib/utilcode/README-CN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
Gradle:
44
```groovy
5-
implementation 'com.blankj:utilcode:1.26.0'
5+
implementation 'com.blankj:utilcode:1.27.0'
66
77
// if u use AndroidX, use the following
8-
implementation 'com.blankj:utilcodex:1.26.0'
8+
implementation 'com.blankj:utilcodex:1.27.0'
99
```
1010

1111

lib/utilcode/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
Gradle:
44
```groovy
5-
implementation 'com.blankj:utilcode:1.26.0'
5+
implementation 'com.blankj:utilcode:1.27.0'
66
77
// if u use AndroidX, use the following
8-
implementation 'com.blankj:utilcodex:1.26.0'
8+
implementation 'com.blankj:utilcodex:1.27.0'
99
```
1010

1111

lib/utilcode/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ android {
2727
}
2828

2929
dependencies {
30-
compileOnly Config.depConfig.gson.dep
30+
implementation Config.depConfig.gson.dep
3131

3232
compileOnly Config.depConfig.support_appcompat_v7.dep
3333
compileOnly Config.depConfig.support_design.dep

lib/utilcode/src/main/java/com/blankj/utilcode/util/NetworkUtils.java

-1
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,6 @@ public void onReceive(Context context, Intent intent) {
743743
public void run() {
744744
NetworkType networkType = NetworkUtils.getNetworkType();
745745
if (mType == networkType) return;
746-
LogUtils.e(networkType);
747746
mType = networkType;
748747
if (networkType == NetworkType.NETWORK_NO) {
749748
for (OnNetworkStatusChangedListener listener : mListeners) {

0 commit comments

Comments
 (0)