File tree 8 files changed +9
-8
lines changed
src/main/java/com/blankj/utilcode/util
8 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 41
41
42
42
[ logo ] : https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png
43
43
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
45
45
[ auc ] : https://github.com/Blankj/AndroidUtilCode
46
46
47
47
[ 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
41
41
42
42
[ logo ] : https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png
43
43
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
45
45
[ auc ] : https://github.com/Blankj/AndroidUtilCode
46
46
47
47
[ 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 {
57
57
// LeakCanary
58
58
debugImplementation " com.squareup.leakcanary:leakcanary-android:$leakcanary_version "
59
59
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 '
61
61
}
62
62
63
63
Original file line number Diff line number Diff line change 33
33
min_sdk_version = 14
34
34
target_sdk_version = 27
35
35
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
38
38
39
39
// App dependencies
40
40
support_version = ' 27.1.0'
Original file line number Diff line number Diff line change
1
+ * 18/04/09 修复静默安装重载错误,发布 1.13.9 版本
1
2
* 18/04/08 修复获取栈顶 Activity 链表为空的异常,获取栈顶 Activity 放到 Utils 中,发布 1.13.8 版本
2
3
* 18/04/06 新增 GsonUtils 及单元测试
3
4
* 18/04/05 完善 README 文档
Original file line number Diff line number Diff line change 2
2
3
3
Gradle:
4
4
``` groovy
5
- compile 'com.blankj:utilcode:1.13.8 '
5
+ compile 'com.blankj:utilcode:1.13.9 '
6
6
```
7
7
8
8
Original file line number Diff line number Diff line change 2
2
3
3
Gradle:
4
4
``` groovy
5
- compile 'com.blankj:utilcode:1.13.8 '
5
+ compile 'com.blankj:utilcode:1.13.9 '
6
6
```
7
7
8
8
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ public static boolean installAppSilent(final File file) {
136
136
* @return {@code true}: success<br>{@code false}: fail
137
137
*/
138
138
public static boolean installAppSilent (final String filePath , final String params ) {
139
- return installAppSilent (getFileByPath (filePath ), null );
139
+ return installAppSilent (getFileByPath (filePath ), params );
140
140
}
141
141
142
142
/**
You can’t perform that action at this time.
0 commit comments