2018-02-16 13:28:50 +03:00

20 lines
385 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion TARGET_SDK
buildToolsVersion BUILD_TOOLS
defaultConfig {
applicationId "noties.ru.markwon_samplecustomextension"
minSdkVersion MIN_SDK
targetSdkVersion TARGET_SDK
versionCode 1
versionName version
}
}
dependencies {
implementation project(':library')
}