Markwon/sample-latex-math/build.gradle
2019-01-07 14:54:29 +03:00

25 lines
590 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-core')
implementation project(':markwon-ext-latex')
// implementation project(':markwon-image-loader')
// implementation 'ru.noties:jlatexmath-android:0.1.0'
}