From 22c94aaf61b93e83d11b95fa669e362dea5c8829 Mon Sep 17 00:00:00 2001 From: Brandon Trautmann Date: Sat, 5 May 2018 22:25:14 -0400 Subject: [PATCH] Last release didn't publish the aar so 1.0.2 is broken. Publish aar here and bump to 1.0.3 --- bintray.gradle | 1 + publishing-config.gradle | 4 ++-- rxfirestore/build.gradle | 1 + rxfirestorekt/build.gradle | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) 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