Markwon/markwon-ext-latex/build.gradle
2020-02-02 17:46:18 +03:00

31 lines
627 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')
api deps['jlatexmath-android']
debugImplementation project(':markwon-inline-parser')
deps['test'].with {
testImplementation it['junit']
testImplementation it['robolectric']
testImplementation it['mockito']
}
}
registerArtifact(this)