build.gradle.kts 546 B

1234567891011121314
  1. buildscript {
  2. dependencies {
  3. classpath("com.google.gms:google-services:4.4.2")
  4. }
  5. }
  6. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  7. plugins {
  8. id("com.android.application") version "8.2.2" apply false
  9. id("org.jetbrains.kotlin.android") version "1.9.0" apply false
  10. id("com.google.gms.google-services") version "4.4.2" apply false
  11. id("com.google.devtools.ksp") version "1.9.0-1.0.13" apply false
  12. id("com.google.dagger.hilt.android") version "2.44" apply false
  13. }