Skip to content

Commit 2fc52ab

Browse files
authored
fix for latest cli #2 (#213)
The plugin was applied in more packages
1 parent f452234 commit 2fc52ab

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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"
@@ -7,4 +9,4 @@ dependencies {
79
implementation platform("com.google.firebase:firebase-bom:${computeFirebaseBomVersion}")
810

911
implementation 'com.google.firebase:firebase-messaging'
10-
}
12+
}

0 commit comments

Comments
 (0)