Skip to content

Commit 06e577c

Browse files
committed
see 05/15 log
1 parent 7a7b08d commit 06e577c

File tree

8 files changed

+348
-7
lines changed

8 files changed

+348
-7
lines changed

README-CN.md

+1-1
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.15.0-brightgreen.svg
44+
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.15.1-brightgreen.svg
4545
[auc]: https://github.com/Blankj/AndroidUtilCode
4646

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

README.md

+1-1
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.15.0-brightgreen.svg
44+
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.15.1-brightgreen.svg
4545
[auc]: https://github.com/Blankj/AndroidUtilCode
4646

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

app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ dependencies {
5656
// LeakCanary
5757
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakcanary_version"
5858
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakcanary_version"
59-
// implementation 'com.blankj:utilcode:1.15.0'
59+
// implementation 'com.blankj:utilcode:1.15.1'
6060
}
6161

6262

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ ext {
4444
min_sdk_version = 14
4545
target_sdk_version = 27
4646

47-
version_code = 1_015_000
48-
version_name = '1.15.0'// E.g 1.9.72 => 1,009,072
47+
version_code = 1_015_001
48+
version_name = '1.15.1'// E.g 1.9.72 => 1,009,072
4949

5050
// App dependencies
5151
support_version = '27.1.0'

update_log.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* 18/05/15 新增 MetaDataUtils 和 ActivityUtils#startActivityForResult,发布 1.15.1 版本
12
* 18/05/08 新增 ResourceUtils,发布 1.15.0 版本
23
* 18/05/07 修复 ZipUtils 漏洞,发布 1.14.4 版本
34
* 18/05/03 修复 ToastUtils 默认字体大小问题,发布 1.14.3 版本

utilcode/README-CN.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gradle:
44
```groovy
5-
implementation 'com.blankj:utilcode:1.15.0'
5+
implementation 'com.blankj:utilcode:1.15.1'
66
```
77

88

@@ -25,6 +25,7 @@ U needn't do anything, because I add `consumerProguardFiles 'proguard-rules.pro'
2525
```
2626
isActivityExists : 判断 Activity 是否存在
2727
startActivity : 启动 Activity
28+
startActivityForResult : 启动 Activity 为返回结果
2829
startActivities : 启动多个 Activity
2930
startHomeActivity : 回到桌面
3031
getActivityList : 获取 Activity 栈链表

utilcode/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gradle:
44
```groovy
5-
implementation 'com.blankj:utilcode:1.15.0'
5+
implementation 'com.blankj:utilcode:1.15.1'
66
```
77

88

@@ -25,6 +25,7 @@ U needn't do anything, because I add `consumerProguardFiles 'proguard-rules.pro'
2525
```
2626
isActivityExists
2727
startActivity
28+
startActivityForResult
2829
startActivities
2930
startHomeActivity
3031
getActivityList

utilcode/src/main/java/com/blankj/utilcode/util/ActivityUtils.java

+338
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)