Skip to content

Commit

Permalink
fix: Library Source does not match the bytecode for class LogUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
Blankj committed Mar 5, 2018
1 parent 2e33643 commit 4afbcba
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ xml : log 字符串之 xml

## How to use

`compile 'com.blankj:alog:1.6.1'` or [![Download][jarsvg]][jar]
`compile 'com.blankj:alog:1.6.2'` or [![Download][jarsvg]][jar]


## Usage
Expand Down Expand Up @@ -142,7 +142,7 @@ public void initALog() {
[![jianshu][jianshusvg]][jianshu] [![weibo][weibosvg]][weibo] [![Blog][blogsvg]][blog] [![QQ0Group][qq0groupsvg]][qq0group] [![QQ1Group][qq1groupsvg]][qq1group]


[alogsvg]: https://img.shields.io/badge/ALog-v1.6.1-brightgreen.svg
[alogsvg]: https://img.shields.io/badge/ALog-v1.6.2-brightgreen.svg
[alog]: https://github.com/Blankj/ALog

[apisvg]: https://img.shields.io/badge/API-11+-brightgreen.svg
Expand All @@ -157,7 +157,7 @@ public void initALog() {
[alog.java]: https://github.com/Blankj/ALog/blob/master/alog/src/main/java/com/blankj/ALog.java
[alog.demo]: https://github.com/Blankj/ALog/blob/master/app/src/main/java/com/blankj/alog/ALogActivity.java
[jarsvg]: https://img.shields.io/badge/download-jar--4Kb-brightgreen.svg
[jar]: https://jcenter.bintray.com/com/blankj/alog/1.6.1/alog-1.6.1-sources.jar
[jar]: https://jcenter.bintray.com/com/blankj/alog/1.6.2/alog-1.6.2-sources.jar
[detail]: https://raw.githubusercontent.com/Blankj/ALog/master/art/detail.png
[args]: https://raw.githubusercontent.com/Blankj/ALog/master/art/args.png
[long]: https://raw.githubusercontent.com/Blankj/ALog/master/art/long.png
Expand Down
2 changes: 1 addition & 1 deletion alog/src/main/java/com/blankj/ALog.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public final class ALog {

@IntDef({V, D, I, W, E, A})
@Retention(RetentionPolicy.SOURCE)
private @interface TYPE {
public @interface TYPE {
}

private static final char[] T = new char[]{'V', 'D', 'I', 'W', 'E', 'A'};
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ android {
dependencies {
compile deps.appcompatv7

// compile 'com.blankj:alog:1.6.1'
compile project(':alog')
compile 'com.blankj:alog:1.6.2'
// compile project(':alog')
}
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ ext {
minSdkVersion = 11
targetSdkVersion = 19

versionCode = 1_006_001
versionName = '1.6.1'
versionCode = 1_006_002
versionName = '1.6.2'

supportVersion = '25.3.1'

Expand Down

0 comments on commit 4afbcba

Please sign in to comment.