23 lines
472 B
Groovy
23 lines
472 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')
|
|
}
|