Markwon/markwon-view/build.gradle
2018-08-31 14:55:25 +03:00

26 lines
440 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion config['compile-sdk']
buildToolsVersion config['build-tools']
defaultConfig {
minSdkVersion config['min-sdk']
targetSdkVersion config['target-sdk']
versionCode 1
versionName version
}
}
dependencies {
api project(':markwon')
deps.with {
compileOnly it['support-app-compat']
}
}
registerArtifact(this)