Markwon/app/build.gradle
Dimitry cb66618d3a
V1.0.6 (#46)
* Fix bullet list item size (depend on text size and not top-bottom arguments)

* Add SNAPSHOT publishing

* Add ability to specify MovementMethod when applying markdown to a TextView

* Add information about new method signature to README (Markwon.setText)

* Fix README links reference

* Add new section to README (applications using markwon)

* Markdown images size is also resolved via ImageSizeResolver
2018-06-26 10:50:56 +02:00

41 lines
847 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 'me.saket:better-link-movement-method:2.2.0'
implementation OK_HTTP
implementation 'com.google.dagger:dagger:2.10'
annotationProcessor 'com.google.dagger:dagger-compiler:2.10'
}