We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9f6bfe3 + 7b4d5a4 commit ca28044Copy full SHA for ca28044
build.gradle
@@ -117,6 +117,11 @@ allprojects { project ->
117
def publicationName = isLibrary ? 'monolithLibrary' : "${project.name}Library"
118
def archivesBaseName = isLibrary ? 'firebase-ui' : "firebase-ui-${project.name}"
119
120
+ // We need to override the variables 'group' and 'version' on the 'Project' object in order
121
+ // to prevent the bintray plugin from creating 'unspecified' artifacts.
122
+ group = project.ext.group
123
+ version = project.ext.version
124
+
125
def groupName = project.ext.group
126
def versionName = project.ext.version
127
0 commit comments