Skip to content

Commit fad63c4

Browse files
committed
Version name fix
Change-Id: Icd570f2a4b155c38648d727b56adcfe5d30a2758
1 parent a965fcd commit fad63c4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,12 @@ allprojects { project ->
130130
apply plugin: 'com.jfrog.bintray'
131131

132132
def archivesBaseName = isLibrary ? 'firebase-ui' : "firebase-ui-${project.name}"
133+
133134
group = project.ext.group
134135
version = project.ext.version
135136

137+
def versionName = project.ext.version
138+
136139
bintray {
137140
user = hasProperty('BINTRAY_USER') ? getProperty('BINTRAY_USER') : System.getenv('BINTRAY_USER')
138141
key = hasProperty('BINTRAY_KEY') ? getProperty('BINTRAY_KEY') : System.getenv('BINTRAY_KEY')
@@ -147,8 +150,7 @@ allprojects { project ->
147150
vcsUrl = 'https://github.com/firebase/FirebaseUI-Android.git'
148151

149152
version {
150-
name = version
151-
released = new Date()
153+
name = versionName
152154
}
153155
}
154156
}

0 commit comments

Comments
 (0)