2018-12-24 18:16:17 +03:00

30 lines
698 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion config['compile-sdk']
buildToolsVersion config['build-tools']
defaultConfig {
applicationId "ru.noties.markwon.sample.extension"
// using 21 as minimum only to be able to vector assets
minSdkVersion 21
targetSdkVersion config['target-sdk']
versionCode 1
versionName version
}
}
dependencies {
implementation project(':markwon')
implementation project(':markwon-image-svg')
implementation project(':markwon-recycler')
implementation project(':markwon-ext-tables')
implementation project(':markwon-html')
implementation deps['debug']
}