From dd42c630db4e59cb9465fdd7d7d43410095e6a92 Mon Sep 17 00:00:00 2001 From: Ichchha Moktan Date: Mon, 23 Jan 2023 12:09:06 +0545 Subject: [PATCH] small fix --- baatolibrary/build.gradle | 21 +++++++-------------- gradle.properties | 2 +- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/baatolibrary/build.gradle b/baatolibrary/build.gradle index 4951faf..54dc7a5 100755 --- a/baatolibrary/build.gradle +++ b/baatolibrary/build.gradle @@ -48,19 +48,12 @@ dependencies { implementation 'commons-codec:commons-codec:1.14' } -afterEvaluate { - publishing { - publications { - // Creates a Maven publication called "release". - mavenAar(MavenPublication) { - // Applies the component for the release build variant. -// from components.release - - // You can then customize attributes of the publication as shown below. - groupId = 'com.github.baato' - artifactId = 'java-client' - version = '1.3.9' - } +publishing { + publications { + release(MavenPublication) { + groupId = 'com.github.baato' + artifactId = 'java-client' + version = '1.4.0' } } -} \ No newline at end of file +} diff --git a/gradle.properties b/gradle.properties index fe6492e..20d11e5 100755 --- a/gradle.properties +++ b/gradle.properties @@ -17,5 +17,5 @@ org.gradle.jvmargs=-Xmx1536m android.useAndroidX=true # Automatically convert third-party libraries to use AndroidX android.enableJetifier=true - +android.disableAutomaticComponentCreation=true