Skip to content

Commit

Permalink
see 05/15 log
Browse files Browse the repository at this point in the history
  • Loading branch information
Blankj committed May 15, 2018
1 parent 7a7b08d commit 06e577c
Show file tree
Hide file tree
Showing 8 changed files with 348 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

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

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

[apisvg]: https://img.shields.io/badge/API-14+-brightgreen.svg
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ dependencies {
// LeakCanary
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakcanary_version"
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakcanary_version"
// implementation 'com.blankj:utilcode:1.15.0'
// implementation 'com.blankj:utilcode:1.15.1'
}


4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ ext {
min_sdk_version = 14
target_sdk_version = 27

version_code = 1_015_000
version_name = '1.15.0'// E.g 1.9.72 => 1,009,072
version_code = 1_015_001
version_name = '1.15.1'// E.g 1.9.72 => 1,009,072

// App dependencies
support_version = '27.1.0'
Expand Down
1 change: 1 addition & 0 deletions update_log.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
* 18/05/15 新增 MetaDataUtils 和 ActivityUtils#startActivityForResult,发布 1.15.1 版本
* 18/05/08 新增 ResourceUtils,发布 1.15.0 版本
* 18/05/07 修复 ZipUtils 漏洞,发布 1.14.4 版本
* 18/05/03 修复 ToastUtils 默认字体大小问题,发布 1.14.3 版本
Expand Down
3 changes: 2 additions & 1 deletion utilcode/README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gradle:
```groovy
implementation 'com.blankj:utilcode:1.15.0'
implementation 'com.blankj:utilcode:1.15.1'
```


Expand All @@ -25,6 +25,7 @@ U needn't do anything, because I add `consumerProguardFiles 'proguard-rules.pro'
```
isActivityExists : 判断 Activity 是否存在
startActivity : 启动 Activity
startActivityForResult : 启动 Activity 为返回结果
startActivities : 启动多个 Activity
startHomeActivity : 回到桌面
getActivityList : 获取 Activity 栈链表
Expand Down
3 changes: 2 additions & 1 deletion utilcode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gradle:
```groovy
implementation 'com.blankj:utilcode:1.15.0'
implementation 'com.blankj:utilcode:1.15.1'
```


Expand All @@ -25,6 +25,7 @@ U needn't do anything, because I add `consumerProguardFiles 'proguard-rules.pro'
```
isActivityExists
startActivity
startActivityForResult
startActivities
startHomeActivity
getActivityList
Expand Down
338 changes: 338 additions & 0 deletions utilcode/src/main/java/com/blankj/utilcode/util/ActivityUtils.java

Large diffs are not rendered by default.

0 comments on commit 06e577c

Please sign in to comment.