Skip to content

Commit 3bc9604

Browse files
committed
see 06/19 log
1 parent 7060007 commit 3bc9604

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* `19/06/19` [fix] UriUtils. Publish v1.24.3.
2+
* `19/06/18` [add] ClickUtils, ViewUtils.
13
* `19/06/07` [fix] LogUtils file name contains ':'. Publish v1.24.2.
24
* `19/06/06` [fix] LogUtils write to file. Publish v1.24.1.
35
* `19/06/03` [fix] Refactoring framework. Publish v1.24.0.

README-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
[logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png
4343

44-
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.24.2-brightgreen.svg
44+
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.24.3-brightgreen.svg
4545
[auc]: https://github.com/Blankj/AndroidUtilCode
4646

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If this project helps you a lot and you want to support the project's developmen
4141

4242
[logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png
4343

44-
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.24.2-brightgreen.svg
44+
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.24.3-brightgreen.svg
4545
[auc]: https://github.com/Blankj/AndroidUtilCode
4646

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

utilcode/README-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

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

1111

utilcode/README-STATIC-BUS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ apply plugin: "com.blankj.bus"
2727
给 base 模块添加 [AndroidUtilCode](https://github.com/Blankj/AndroidUtilCode) 依赖:
2828

2929
```groovy
30-
api "com.blankj:utilcode:1.24.2"
30+
api "com.blankj:utilcode:1.24.3"
3131
```
3232

3333
比如 module0 中存在的 `Module0Activity.java`,我们通常都是在它内部写一个 `start` 函数来启动它,现在我们给它添加 `@BusUtils.Subscribe` 注解,并给注解的 `name` 赋唯一值,要注意,函数务必要 `public static` 哦:

utilcode/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

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

1111

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public static File uri2File(@NonNull final Uri uri) {
5656
String scheme = uri.getScheme();
5757
String path = uri.getPath();
5858
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N
59-
&& path != null && path.startsWith("/external")) {
59+
&& path != null && path.startsWith("/external/")) {
6060
return new File(Environment.getExternalStorageDirectory().getAbsolutePath()
6161
+ path.replace("/external", ""));
6262
}

0 commit comments

Comments
 (0)