Markwon/app/build.gradle
Dimitry d70a4b7b91
Feature: Revert spans order (#11)
* Basic revert spans functionality

* Defensive copy in SpannableBuilder

* SpannableBuilder

* Removed nullablity from Markwon class (no null markdown)
2017-11-11 15:52:06 +03:00

40 lines
748 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 {
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.10'
annotationProcessor 'com.google.dagger:dagger-compiler:2.10'
}