Files
Acronyms/shortform/build.gradle
2021-06-17 11:27:28 -04:00

17 lines
335 B
Groovy

apply from: '../versions.gradle'
apply from: '../base.gradle'
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-parcelize'
android {
defaultConfig {
buildConfigField "String", "DB_NAME", '"acronyms.db"'
}
}
dependencies {
implementation project(':core')
}