Skip to content

Commit 152ba77

Browse files
authored
fix: work with latest cli (#200)
1 parent 7ddc935 commit 152ba77

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
apply plugin: 'com.google.gms.google-services'
1+
if (!project.hasProperty("tempBuild")) {
2+
apply plugin: 'com.google.gms.google-services'
3+
}
24
dependencies {
35
def computeKotlinVersion = { -> project.hasProperty("kotlinVersion") ? kotlinVersion : "1.4.32" }
46
implementation "org.jetbrains.kotlin:kotlin-stdlib:$computeKotlinVersion"
57

68
def computeFirebaseBomVersion = { -> project.hasProperty("firebaseBomVersion") ? firebaseBomVersion : "31.2.3" }
79
implementation platform("com.google.firebase:firebase-bom:${computeFirebaseBomVersion}")
8-
}
10+
}

0 commit comments

Comments
 (0)