Last active
April 22, 2020 15:15
-
-
Save alfonsogarsan/0ea5d33f528718e9079be58c0b35201f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.android.application' | |
apply plugin: 'kotlin-android' | |
apply plugin: 'kotlin-android-extensions' | |
android { | |
compileSdkVersion 29 | |
buildToolsVersion "29.0.3" | |
defaultConfig { | |
applicationId "com.alfgarsan.android.retrofitrxyesno" | |
minSdkVersion 23 | |
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' | |
} | |
} | |
} | |
dependencies { | |
implementation fileTree(dir: 'libs', include: ['*.jar']) | |
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" | |
implementation 'androidx.appcompat:appcompat:1.1.0' | |
implementation 'androidx.core:core-ktx:1.2.0' | |
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' | |
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' | |
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0' | |
implementation 'com.google.android.material:material:1.0.0' | |
implementation 'com.squareup.retrofit2:retrofit:2.6.2' | |
implementation 'com.squareup.retrofit2:converter-gson:2.6.2' | |
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.3.0' | |
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1' | |
implementation 'com.github.bumptech.glide:glide:4.8.0' | |
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0' | |
testImplementation 'junit:junit:4.13' | |
androidTestImplementation 'androidx.test.ext:junit:1.1.1' | |
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment