apply plugin: 'com.android.application' android { compileSdkVersion 29 buildToolsVersion "29.0.2" defaultConfig { applicationId "com.androiddev.project.ili.wishurgift" minSdkVersion 21 targetSdkVersion 29 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 = 1.8 targetCompatibility = 1.8 } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.recyclerview:recyclerview:1.0.0' implementation 'androidx.cardview:cardview:1.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'com.google.android.material:material:1.1.0' implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' implementation 'com.android.volley:volley:1.1.0' implementation 'com.google.code.gson:gson:2.8.0' implementation 'com.koushikdutta.ion:ion:2.1.7' implementation 'com.github.dmytrodanylyk.circular-progress-button:library:1.1.3' implementation 'com.android.support:design:29.0.2' //animated button for login implementation 'br.com.simplepass:loading-button-android:1.14.0' androidTestImplementation 'com.android.support.test:runner:1.0.2' implementation 'com.android.support.test.espresso:espresso-contrib:3.0.2' implementation 'de.hdodenhof:circleimageview:3.1.0' implementation 'com.github.bumptech.glide:glide:4.10.0' //Add Google Play services implementation 'com.google.android.gms:play-services-auth:17.0.0' // Validator implementation 'com.mobsandgeeks:android-saripaar:2.0.3' }