Markwon/app/build.gradle
zTrap 338bcabd6e **library
- All images now clickable

**library-image-loader

 - AsyncDrawableLoader now have resize to custom sizes logic

**Other

 - bump buildTools, targetSdk, supportVersion, dagger and okhttp to max actual version
 - variables names are modified to better match the [google codestyle](https://google.github.io/styleguide/javaguide.html)
2017-10-26 09:04:27 +03:00

40 lines
747 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion TARGET_SDK
buildToolsVersion BUILD_TOOLS
defaultConfig {
applicationId "ru.noties.markwon"
minSdkVersion MIN_SDK
targetSdkVersion TARGET_SDK
versionCode 1
versionName version
}
lintOptions {
abortOnError false
}
buildTypes {
debug {
minifyEnabled true
proguardFile 'proguard.pro'
}
}
}
dependencies {
compile project(':library')
compile project(':library-image-loader')
compile 'ru.noties:debug:3.0.0@jar'
compile OK_HTTP
compile 'com.google.dagger:dagger:2.12'
annotationProcessor 'com.google.dagger:dagger-compiler:2.12'
}