diff --git a/README-CN.md b/README-CN.md index 1054fb665e093e8fe086466f29b114e3e51b3568..0d0d9a2e288d55600e737dd0a6984f61c73f7fc7 100644 --- a/README-CN.md +++ b/README-CN.md @@ -41,7 +41,7 @@ [logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png -[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.23.3-brightgreen.svg +[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.23.4-brightgreen.svg [auc]: https://github.com/Blankj/AndroidUtilCode [apiSvg]: https://img.shields.io/badge/API-14+-brightgreen.svg diff --git a/README.md b/README.md index a9831c052c936500cc326dfe4498e51ae50aa3b6..7729730a6efefc0ef54032d36d13dd084ae43339 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ If this project helps you a lot and you want to support the project's developmen [logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png -[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.23.3-brightgreen.svg +[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.23.4-brightgreen.svg [auc]: https://github.com/Blankj/AndroidUtilCode [apiSvg]: https://img.shields.io/badge/API-14+-brightgreen.svg diff --git a/config.gradle b/config.gradle index 34980b47590136637a7772199102b3a5971f0686..d8b8edae76bb81d91254229948c5245944c5006f 100644 --- a/config.gradle +++ b/config.gradle @@ -5,8 +5,8 @@ ext { compileSdkVersion = 27 minSdkVersion = 14 targetSdkVersion = 27 - versionCode = 1_023_003 - versionName = '1.23.3'// E.g. 1.9.72 => 1,009,072 + versionCode = 1_023_004 + versionName = '1.23.4'// E.g. 1.9.72 => 1,009,072 bus = [ isDebug: false, diff --git a/lib/base/build.gradle b/lib/base/build.gradle index 66eb4f3c461e2567ddf7b58d0e84af339ff2f120..5fef3caea96a06f1908e627afb73e4c0ba87b3c7 100644 --- a/lib/base/build.gradle +++ b/lib/base/build.gradle @@ -15,5 +15,5 @@ dependencies { api dep.free_proguard api 'com.r0adkll:slidableactivity:2.0.5' compileOnly dep.leakcanary.android_no_op -// api 'com.blankj:utilcode:1.23.3' +// api 'com.blankj:utilcode:1.23.4' } \ No newline at end of file diff --git a/utilcode/README-CN.md b/utilcode/README-CN.md index ad919e02d7fbe862fb84e83832e84444ce048c30..a818d8e109c976b50fe01e9bae42f83d62459927 100644 --- a/utilcode/README-CN.md +++ b/utilcode/README-CN.md @@ -2,7 +2,7 @@ Gradle: ```groovy -implementation 'com.blankj:utilcode:1.23.3' +implementation 'com.blankj:utilcode:1.23.4' ``` diff --git a/utilcode/README-STATIC-BUS.md b/utilcode/README-STATIC-BUS.md index d0605ef25b699df4a0c26f81e893a97438d2df9a..f73d643a3b4f7b573d110a6abb13061a762e095b 100644 --- a/utilcode/README-STATIC-BUS.md +++ b/utilcode/README-STATIC-BUS.md @@ -27,7 +27,7 @@ apply plugin: "com.blankj.bus" 给 base 模块添加 [AndroidUtilCode](https://github.com/Blankj/AndroidUtilCode) 依赖: ```groovy -api "com.blankj:utilcode:1.23.3" +api "com.blankj:utilcode:1.23.4" ``` 比如 module0 中存在的 `Module0Activity.java`,我们通常都是在它内部写一个 `start` 函数来启动它,现在我们给它添加 `@BusUtils.Subscribe` 注解,并给注解的 `name` 赋唯一值,要注意,函数务必要 `public static` 哦: diff --git a/utilcode/README.md b/utilcode/README.md index 450b9598e6960db80be50a7a9d1ec12c9cc4ce34..f1b5de5e68d8138e75d1a471bda78716c1967d80 100644 --- a/utilcode/README.md +++ b/utilcode/README.md @@ -2,7 +2,7 @@ Gradle: ```groovy -implementation 'com.blankj:utilcode:1.23.3' +implementation 'com.blankj:utilcode:1.23.4' ```