Markwon/app/build.gradle
zTrap 92ccf583c5 **Markwon view
- variables names are modified to better match the [google codestyle](https://source.android.com/source/code-style#follow-field-naming-conventions)
2017-10-26 10:01:38 +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'
}