Skip to content

Commit

Permalink
see 04/01 log
Browse files Browse the repository at this point in the history
  • Loading branch information
Blankj committed Mar 31, 2020
1 parent 820ad84 commit 3ff7852
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

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

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

[apiSvg]: https://img.shields.io/badge/API-14+-brightgreen.svg
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ If this project helps you a lot and you want to support the project's developmen

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

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

[apiSvg]: https://img.shields.io/badge/API-14+-brightgreen.svg
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/groovy/Config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Config {
free_proguard : new DepConfig("com.blankj:free-proguard:1.0.2"),
swipe_panel : new DepConfig("com.blankj:swipe-panel:1.2"),

gson : new DepConfig("com.google.code.gson:gson:2.8.6"),
gson : new DepConfig("com.google.code.gson:gson:2.8.5"),
glide : new DepConfig("com.github.bumptech.glide:glide:4.7.1"),
retrofit : new DepConfig("com.squareup.retrofit2:retrofit:2.4.0"),
commons_io : new DepConfig("commons-io:commons-io:2.6"),
Expand Down
4 changes: 2 additions & 2 deletions lib/utilcode/README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

Gradle:
```groovy
implementation 'com.blankj:utilcode:1.26.0'
implementation 'com.blankj:utilcode:1.27.0'
// if u use AndroidX, use the following
implementation 'com.blankj:utilcodex:1.26.0'
implementation 'com.blankj:utilcodex:1.27.0'
```


Expand Down
4 changes: 2 additions & 2 deletions lib/utilcode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

Gradle:
```groovy
implementation 'com.blankj:utilcode:1.26.0'
implementation 'com.blankj:utilcode:1.27.0'
// if u use AndroidX, use the following
implementation 'com.blankj:utilcodex:1.26.0'
implementation 'com.blankj:utilcodex:1.27.0'
```


Expand Down
2 changes: 1 addition & 1 deletion lib/utilcode/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ android {
}

dependencies {
compileOnly Config.depConfig.gson.dep
implementation Config.depConfig.gson.dep

compileOnly Config.depConfig.support_appcompat_v7.dep
compileOnly Config.depConfig.support_design.dep
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,6 @@ public void onReceive(Context context, Intent intent) {
public void run() {
NetworkType networkType = NetworkUtils.getNetworkType();
if (mType == networkType) return;
LogUtils.e(networkType);
mType = networkType;
if (networkType == NetworkType.NETWORK_NO) {
for (OnNetworkStatusChangedListener listener : mListeners) {
Expand Down

0 comments on commit 3ff7852

Please sign in to comment.