apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' apply plugin: 'com.google.gms.google-services' android { compileSdkVersion 28 defaultConfig { applicationId "com.project.fplus.fplusapp" minSdkVersion 19 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" //noinspection GradleCompatible implementation 'androidx.appcompat:appcompat:1.0.0' implementation 'androidx.core:core:1.0.0' implementation 'com.google.android.material:material:1.0.0-rc01' implementation 'androidx.viewpager:viewpager:1.0.0' implementation 'androidx.vectordrawable:vectordrawable:1.0.0' implementation 'androidx.fragment:fragment:1.0.0' implementation 'androidx.recyclerview:recyclerview:1.0.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' testImplementation 'junit:junit:4.12' implementation 'com.google.firebase:firebase-core:17.0.0' implementation 'com.google.firebase:firebase-auth:18.0.0' androidTestImplementation 'androidx.test:runner:1.1.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0' implementation 'com.squareup.okhttp3:okhttp:3.11.0' implementation 'com.squareup.retrofit:retrofit:1.6.1' implementation 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2' implementation 'com.firebaseui:firebase-ui-auth:4.3.1' implementation 'com.facebook.android:facebook-android-sdk:[4,5)' implementation 'com.aurelhubert:ahbottomnavigation:2.3.4' implementation 'com.ernestoyaquello.stepperform:vertical-stepper-form:2.2.0' }