apply plugin: 'com.android.application' | |
apply plugin: 'kotlin-android' | |
apply plugin: 'kotlin-android-extensions' | |
apply plugin: 'kotlin-kapt' | |
android { | |
compileSdkVersion 28 | |
defaultConfig { | |
applicationId "com.illuzor.lesson.wallpapers" | |
minSdkVersion 21 | |
targetSdkVersion 28 | |
versionCode 1 | |
versionName "1.0" | |
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | |
} | |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
} | |
} | |
} | |
dependencies { | |
implementation fileTree(dir: 'libs', include: ['*.jar']) | |
testImplementation "junit:junit:4.12" | |
androidTestImplementation "androidx.test:runner:1.1.0-alpha4" | |
androidTestImplementation "androidx.test.espresso:espresso-core:3.1.0-alpha4" | |
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_ver" | |
implementation "androidx.appcompat:appcompat:1.0.0" | |
implementation "androidx.recyclerview:recyclerview:1.0.0" | |
implementation "androidx.constraintlayout:constraintlayout:2.0.0-alpha2" | |
implementation "androidx.lifecycle:lifecycle-extensions:2.0.0" | |
implementation "com.squareup.retrofit2:retrofit:$retrofit_ver" | |
implementation "com.squareup.retrofit2:converter-gson:$retrofit_ver" | |
implementation "com.github.bumptech.glide:glide:$glide_ver" | |
kapt "com.github.bumptech.glide:compiler:$glide_ver" | |
implementation "com.github.chrisbanes:PhotoView:2.1.4" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment