plugins { id 'com.android.application' } android { compileSdkVersion 30 buildToolsVersion "30.0.3" defaultConfig { applicationId "com.example.mave" minSdkVersion 23 targetSdkVersion 30 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 } } dependencies { implementation 'androidx.appcompat:appcompat:1.3.0' implementation 'com.google.android.material:material:1.2.0-alpha02' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'com.airbnb.android:lottie:3.7.0' implementation 'com.ismaeldivita.chipnavigation:chip-navigation-bar:1.3.4' implementation "androidx.core:core-ktx:1.3.2" implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'com.makeramen:roundedimageview:2.3.0' implementation 'com.google.android.material:material:1.0.0-rc01' implementation 'androidx.appcompat:appcompat:1.3.0-rc01' implementation 'androidx.recyclerview:recyclerview:1.2.0' implementation 'com.github.bumptech.glide:glide:4.12.0' implementation "androidx.core:core:1.0.2" implementation 'com.google.firebase:firebase-database:19.2.1' implementation 'com.google.firebase:firebase-storage:19.1.1' implementation 'androidx.recyclerview:recyclerview:1.2.0' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' implementation 'com.squareup.retrofit2:retrofit:2.6.4' implementation 'com.squareup.retrofit2:converter-gson:2.6.4' implementation 'com.squareup.retrofit2:converter-scalars:2.6.4' implementation 'com.royrodriguez:transitionbutton:0.2.0' implementation platform('com.google.firebase:firebase-bom:28.0.1') implementation 'com.google.firebase:firebase-analytics' implementation 'com.squareup.picasso:picasso:2.71828' } apply plugin: 'com.android.application' apply plugin: 'com.google.gms.google-services'