build.gradle 515 B

12345678910111213141516171819
  1. buildscript {
  2. repositories {
  3. google() // Google's Maven repository
  4. mavenCentral() // Maven Central repository
  5. }
  6. dependencies {
  7. classpath 'com.google.gms:google-services:4.3.13'
  8. }
  9. }
  10. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  11. plugins {
  12. id 'com.android.application' version '7.3.1' apply false
  13. id 'com.android.library' version '7.3.1' apply false
  14. }
  15. task clean(type: Delete) {
  16. delete rootProject.buildDir
  17. }