diff --git a/maven-push.gradle b/maven-push.gradle index 1667d5c..bec2439 100644 --- a/maven-push.gradle +++ b/maven-push.gradle @@ -98,6 +98,9 @@ afterEvaluate { project -> android.libraryVariants.all { variant -> if (variant.name == 'release') { owner.classpath += variant.javaCompiler.classpath + if (JavaVersion.current().isJava8Compatible()) { + options.addStringOption('Xdoclint:none', '-quiet') + } } } classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) diff --git a/xlog-libcat/build.gradle b/xlog-libcat/build.gradle index 1ed0101..36fb84e 100644 --- a/xlog-libcat/build.gradle +++ b/xlog-libcat/build.gradle @@ -40,6 +40,6 @@ android { } dependencies { - api 'com.elvishew:xlog:1.9.0' + api 'com.elvishew:xlog:1.11.0' api 'org.aspectj:aspectjrt:1.9.5' } \ No newline at end of file diff --git a/xlog-sample/build.gradle b/xlog-sample/build.gradle index 93f56e8..0d44cdf 100644 --- a/xlog-sample/build.gradle +++ b/xlog-sample/build.gradle @@ -41,7 +41,7 @@ aspectjx { } dependencies { - implementation 'com.elvishew:xlog:1.9.0' + implementation 'com.elvishew:xlog:1.11.0' implementation 'com.elvishew:xlog-libcat:1.0.0' implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.google.android.material:material:1.3.0-alpha02' diff --git a/xlog/gradle.properties b/xlog/gradle.properties index e7cc68b..65197c6 100644 --- a/xlog/gradle.properties +++ b/xlog/gradle.properties @@ -3,5 +3,5 @@ POM_ARTIFACT_ID=xlog POM_PACKAGING=jar POM_DESCRIPTION=Android logger, pretty, powerful and flexible, logging to file and everywhere -VERSION_NAME=1.10.1 -VERSION_CODE=18 +VERSION_NAME=1.11.0 +VERSION_CODE=19