30 lines
703 B
Groovy
30 lines
703 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-core')
|
|
|
|
implementation project(':markwon-image-svg')
|
|
implementation project(':markwon-recycler')
|
|
implementation project(':markwon-ext-tables')
|
|
implementation project(':markwon-html')
|
|
|
|
implementation deps['debug']
|
|
}
|