We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ddc935 commit 152ba77Copy full SHA for 152ba77
packages/firebase-core/platforms/android/include.gradle
@@ -1,8 +1,10 @@
1
-apply plugin: 'com.google.gms.google-services'
+if (!project.hasProperty("tempBuild")) {
2
+ apply plugin: 'com.google.gms.google-services'
3
+}
4
dependencies {
5
def computeKotlinVersion = { -> project.hasProperty("kotlinVersion") ? kotlinVersion : "1.4.32" }
6
implementation "org.jetbrains.kotlin:kotlin-stdlib:$computeKotlinVersion"
7
8
def computeFirebaseBomVersion = { -> project.hasProperty("firebaseBomVersion") ? firebaseBomVersion : "31.2.3" }
9
implementation platform("com.google.firebase:firebase-bom:${computeFirebaseBomVersion}")
-}
10
0 commit comments