is there any way how to extract ```classpath("com....
# android-studio
y
is there any way how to extract
Copy code
classpath("com.google.gms:google-services:4.3.15")
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.2")
from dependencies to
Copy code
plugins {}
section?
j
apply those plugins with false, for example
Copy code
plugins {
    id("com.google.firebase.crashlytics") version "2.9.2" apply false
}
y
superb .. it works .. thanks