| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- plugins {
- id 'com.android.application'
- id 'org.jetbrains.kotlin.android'
- id 'kotlin-kapt'
- id 'com.google.gms.google-services'
- }
- android {
- namespace 'com.example.snapshots'
- compileSdk 33
- defaultConfig {
- applicationId "com.example.snapshots"
- minSdk 21
- targetSdk 33
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- kotlinOptions {
- jvmTarget = '1.8'
- }
- viewBinding {
- enabled = true
- }
- }
- dependencies {
- implementation 'androidx.core:core-ktx:1.7.0'
- implementation 'androidx.appcompat:appcompat:1.6.1'
- implementation 'com.google.android.material:material:1.9.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- implementation 'com.github.bumptech.glide:glide:4.16.0'
- implementation(platform("com.google.firebase:firebase-bom:32.2.3"))
- // Firebase Storage
- implementation("com.google.firebase:firebase-storage-ktx")
- // FirebaseUI for Firebase Realtime Database
- implementation 'com.firebaseui:firebase-ui-database:8.0.2'
- // FirebaseUI for Firebase Auth
- implementation 'com.firebaseui:firebase-ui-auth:8.0.2'
- }
|