We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f452234 commit 2fc52abCopy full SHA for 2fc52ab
packages/firebase-messaging-core/platforms/android/include.gradle
@@ -1,4 +1,6 @@
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,4 +9,4 @@ dependencies {
7
9
implementation platform("com.google.firebase:firebase-bom:${computeFirebaseBomVersion}")
8
10
11
implementation 'com.google.firebase:firebase-messaging'
-}
12
0 commit comments