diff --git a/bintray.gradle b/bintray.gradle index 385498d..0120811 100644 --- a/bintray.gradle +++ b/bintray.gradle @@ -62,6 +62,7 @@ publishing { MyPublication(MavenPublication) { artifact sourcesJar artifact javadocJar + artifact("$buildDir/outputs/aar/$aarName") groupId publishedGroupId artifactId artifact version libraryVersion diff --git a/publishing-config.gradle b/publishing-config.gradle index ff10766..c76719a 100644 --- a/publishing-config.gradle +++ b/publishing-config.gradle @@ -1,7 +1,7 @@ ext { // Publishing - libraryVersion = '1.0.2' - libraryVersionName = '1.0.2' + libraryVersion = '1.0.3' + libraryVersionName = '1.0.3' bintrayRepo = 'maven' publishedGroupId = 'com.oakwoodsc.rxfirestore' libraryDescription = 'An RxJava2 wrapper for Cloud Firestore' diff --git a/rxfirestore/build.gradle b/rxfirestore/build.gradle index f68a006..e0d9d33 100644 --- a/rxfirestore/build.gradle +++ b/rxfirestore/build.gradle @@ -33,6 +33,7 @@ ext { libraryName = 'RxFirestore' // This artifact name should be the same with library module name artifact = 'rxfirestore' + aarName = 'rxfirestore-release.aar' libraryDescription = rootProject.ext.libraryDescription siteUrl = rootProject.ext.siteUrl gitUrl = rootProject.ext.gitUrl diff --git a/rxfirestorekt/build.gradle b/rxfirestorekt/build.gradle index c0aa5fa..0d6cef7 100644 --- a/rxfirestorekt/build.gradle +++ b/rxfirestorekt/build.gradle @@ -31,6 +31,7 @@ ext { libraryName = 'RxFirestoreKt' // This artifact name should be the same with library module name artifact = 'rxfirestorekt' + aarName = 'rxfirestorekt-release.aar' libraryDescription = rootProject.ext.libraryDescription siteUrl = rootProject.ext.siteUrl gitUrl = rootProject.ext.gitUrl