35 lines
807 B
Groovy
35 lines
807 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 {
|
|
|
|
deps.with {
|
|
api it['support-annotations']
|
|
api it['commonmark']
|
|
}
|
|
|
|
deps['test'].with {
|
|
testImplementation it['junit']
|
|
testImplementation it['robolectric']
|
|
testImplementation it['ix-java']
|
|
testImplementation it['jackson-yaml']
|
|
testImplementation it['jackson-databind']
|
|
testImplementation it['gson']
|
|
testImplementation it['commons-io']
|
|
testImplementation it['mockito']
|
|
}
|
|
}
|
|
|
|
registerArtifact(this) |