Markwon/sample-latex-math/build.gradle
2018-09-08 15:46:41 +03:00

24 lines
532 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion config['compile-sdk']
buildToolsVersion config['build-tools']
defaultConfig {
applicationId "ru.noties.markwon.sample.jlatexmath"
minSdkVersion config['min-sdk']
targetSdkVersion config['target-sdk']
versionCode 1
versionName version
}
}
dependencies {
implementation project(':markwon')
implementation project(':markwon-image-loader')
implementation 'ru.noties:jlatexmath-android:0.1.0'
}