Skip to content

Commit 44ff4a8

Browse files
authored
Merge pull request #34 from GitLiveApp/do_fb_sdk_download_once
Only download if not downloaded already
2 parents cadc261 + 834655c commit 44ff4a8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

build.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,9 @@ val minSdkVersion by extra(16)
2525

2626
tasks {
2727
val downloadIOSFirebaseZipFile by creating(Download::class) {
28-
onlyIfModified(true)
2928
src("https://github.com/firebase/firebase-ios-sdk/releases/download/6.17.0/Firebase-6.17.0.zip")
30-
dest(File("$buildDir", "Firebase-6.17.0.zip"))
31-
overwrite(true)
32-
29+
dest(File("$buildDir/", "Firebase-6.17.0.zip"))
30+
overwrite(false)
3331
}
3432

3533
val unzipIOSFirebase by creating(Copy::class) {

0 commit comments

Comments
 (0)