Skip to content

Instantly share code, notes, and snippets.

@illuzor
Last active September 28, 2018 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save illuzor/60ba232171c6529cee68c33c61a93e1b to your computer and use it in GitHub Desktop.
Save illuzor/60ba232171c6529cee68c33c61a93e1b to your computer and use it in GitHub Desktop.
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