Markwon/app/build.gradle
Dimitry 26bfb7f2e2
V2.0.1 fixed (#83)
* `SpannableMarkdownVisitor` Rename blockQuoteIndent to blockIndent
* Fixed block new lines logic for block quote and paragraph (#82)
* AsyncDrawable fix no dimensions bug (#81)
* Update SpannableTheme to use Px instead of Dimension annotation
* Allow TaskListSpan isDone mutation 
* Updated commonmark-java to 0.12.1
* Add OrderedListItemSpan measure utility method (#78)
* Add SpannableBuilder#getSpans method
* Fix DataUri scheme handler in image-loader (#74)
* Introduced a "copy" builder for SpannableThem
  Thanks @c-b-h 🙌
2018-12-10 14:58:40 +03:00

47 lines
1.0 KiB
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion config['compile-sdk']
buildToolsVersion config['build-tools']
defaultConfig {
applicationId "ru.noties.markwon"
minSdkVersion config['min-sdk']
targetSdkVersion config['target-sdk']
versionCode 1
versionName version
setProperty("archivesBaseName", "markwon-sample-$versionName")
}
lintOptions {
abortOnError false
}
buildTypes {
debug {
minifyEnabled false
proguardFile 'proguard.pro'
}
}
}
dependencies {
implementation project(':markwon')
implementation project(':markwon-image-loader')
implementation project(':markwon-syntax-highlight')
deps.with {
implementation it['okhttp']
implementation it['prism4j']
implementation it['debug']
implementation it['dagger']
}
deps['annotationProcessor'].with {
annotationProcessor it['prism4j-bundler']
annotationProcessor it['dagger-compiler']
}
}