29 lines
593 B
Groovy
29 lines
593 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-core')
|
|
|
|
deps['test'].with {
|
|
|
|
testImplementation project(':markwon-test-span')
|
|
|
|
testImplementation it['junit']
|
|
testImplementation it['robolectric']
|
|
testImplementation it['commons-io']
|
|
}
|
|
}
|
|
|
|
registerArtifact(this) |