File tree Expand file tree Collapse file tree 8 files changed +9
-8
lines changed
src/main/java/com/blankj/utilcode/util Expand file tree Collapse file tree 8 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 4141
4242[ logo ] : https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png
4343
44- [ aucsvg ] : https://img.shields.io/badge/AndroidUtilCode-v1.13.8 -brightgreen.svg
44+ [ aucsvg ] : https://img.shields.io/badge/AndroidUtilCode-v1.13.9 -brightgreen.svg
4545[ auc ] : https://github.com/Blankj/AndroidUtilCode
4646
4747[ apisvg ] : https://img.shields.io/badge/API-14+-brightgreen.svg
Original file line number Diff line number Diff 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.13.8 -brightgreen.svg
44+ [ aucsvg ] : https://img.shields.io/badge/AndroidUtilCode-v1.13.9 -brightgreen.svg
4545[ auc ] : https://github.com/Blankj/AndroidUtilCode
4646
4747[ apisvg ] : https://img.shields.io/badge/API-14+-brightgreen.svg
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ dependencies {
5757 // LeakCanary
5858 debugImplementation " com.squareup.leakcanary:leakcanary-android:$leakcanary_version "
5959 releaseImplementation " com.squareup.leakcanary:leakcanary-android-no-op:$leakcanary_version "
60- // implementation 'com.blankj:utilcode:1.13.8 '
60+ // implementation 'com.blankj:utilcode:1.13.9 '
6161}
6262
6363
Original file line number Diff line number Diff line change 3333 min_sdk_version = 14
3434 target_sdk_version = 27
3535
36- version_code = 1_013_008
37- version_name = ' 1.13.8 ' // E.g 1.9.72 => 1,009,072
36+ version_code = 1_013_009
37+ version_name = ' 1.13.9 ' // E.g 1.9.72 => 1,009,072
3838
3939 // App dependencies
4040 support_version = ' 27.1.0'
Original file line number Diff line number Diff line change 1+ * 18/04/09 修复静默安装重载错误,发布 1.13.9 版本
12* 18/04/08 修复获取栈顶 Activity 链表为空的异常,获取栈顶 Activity 放到 Utils 中,发布 1.13.8 版本
23* 18/04/06 新增 GsonUtils 及单元测试
34* 18/04/05 完善 README 文档
Original file line number Diff line number Diff line change 22
33Gradle:
44``` groovy
5- compile 'com.blankj:utilcode:1.13.8 '
5+ compile 'com.blankj:utilcode:1.13.9 '
66```
77
88
Original file line number Diff line number Diff line change 22
33Gradle:
44``` groovy
5- compile 'com.blankj:utilcode:1.13.8 '
5+ compile 'com.blankj:utilcode:1.13.9 '
66```
77
88
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ public static boolean installAppSilent(final File file) {
136136 * @return {@code true}: success<br>{@code false}: fail
137137 */
138138 public static boolean installAppSilent (final String filePath , final String params ) {
139- return installAppSilent (getFileByPath (filePath ), null );
139+ return installAppSilent (getFileByPath (filePath ), params );
140140 }
141141
142142 /**
You can’t perform that action at this time.
0 commit comments