Skip to content

Commit ea22681

Browse files
committed
see 03/05 log
1 parent 480d917 commit ea22681

File tree

9 files changed

+12
-9
lines changed

9 files changed

+12
-9
lines changed

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.13.0-brightgreen.svg
44+
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.13.1-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 ptoject helps you a lot, and you would like to support this ptoject's fu
4141

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

44-
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.13.0-brightgreen.svg
44+
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.13.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

Lines changed: 1 addition & 1 deletion
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.13.0'
59+
// implementation 'com.blankj:utilcode:1.13.1'
6060
}
6161

6262

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ ext {
3535
min_sdk_version = 14
3636
target_sdk_version = 26
3737

38-
version_code = 1_013_000
39-
version_name = '1.13.0'// E.g 1.9.72 => 1,009,072
38+
version_code = 1_013_001
39+
version_name = '1.13.1'// E.g 1.9.72 => 1,009,072
4040

4141
// App dependencies
4242
support_version = '26.1.0'

update_log.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* 18/03/05 修复 Library Source does not match the bytecode for class LogUtils 问题,发布 1.13.1 版本
2+
* 18/03/04 完善 Javadoc 中文版为英文版,发布 1.13.0 版本
3+
* 18/03/04 完善 Javadoc 中文版为英文版
14
* 18/03/03 完善 Javadoc 中文版为英文版
25
* 18/03/02 完善 Javadoc 中文版为英文版
36
* 18/03/01 完善 Javadoc 中文版为英文版

utilcode/README-CN.md

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

33
Gradle:
44
```groovy
5-
compile 'com.blankj:utilcode:1.13.0'
5+
compile 'com.blankj:utilcode:1.13.1'
66
```
77

88

utilcode/README.md

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

33
Gradle:
44
```groovy
5-
compile 'com.blankj:utilcode:1.13.0'
5+
compile 'com.blankj:utilcode:1.13.1'
66
```
77

88

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public final class LogUtils {
5757

5858
@IntDef({V, D, I, W, E, A})
5959
@Retention(RetentionPolicy.SOURCE)
60-
private @interface TYPE {
60+
public @interface TYPE {
6161
}
6262

6363
private static final char[] T = new char[]{'V', 'D', 'I', 'W', 'E', 'A'};

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public static List<String> getPermissions(final String packageName) {
7777
}
7878

7979
/**
80-
* Return whether <em>you</em> have been granted the permissions.
80+
* Return whether <em>you</em> have granted the permissions.
8181
*
8282
* @param permissions The permissions.
8383
* @return {@code true}: yes<br>{@code false}: no

0 commit comments

Comments
 (0)