
* Initialized custom extension module * Upgraded android gradle plugin to 3.0.1 * Shaping up the custom extension module * Added README to module * Small improvement for IconVisitor (added color null check)
40 lines
783 B
Groovy
40 lines
783 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 false
|
|
proguardFile 'proguard.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation project(':library')
|
|
implementation project(':library-image-loader')
|
|
|
|
implementation 'ru.noties:debug:3.0.0@jar'
|
|
|
|
implementation OK_HTTP
|
|
|
|
implementation 'com.google.dagger:dagger:2.10'
|
|
annotationProcessor 'com.google.dagger:dagger-compiler:2.10'
|
|
}
|