diff options
| -rw-r--r-- | app/build.gradle | 2 | ||||
| -rw-r--r-- | build.gradle | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle index 8244d95..346814f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,7 @@ plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' + id 'com.google.gms.google-services' } android { @@ -64,6 +65,7 @@ dependencies { implementation "androidx.fragment:fragment-ktx:1.5.7" implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'com.google.android.material:material:1.9.0' + implementation 'com.google.firebase:firebase-auth-ktx:22.0.0' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' diff --git a/build.gradle b/build.gradle index 4314313..80463e2 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,8 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. +buildscript { + dependencies { + classpath 'com.google.gms:google-services:4.3.15' + } +}// Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { id 'com.android.application' version '8.0.2' apply false id 'com.android.library' version '8.0.2' apply false |