Files
Acronyms/shortform/build.gradle

19 lines
418 B
Groovy
Raw Normal View History

2021-06-15 22:38:58 -04:00
apply from: '../versions.gradle'
apply from: '../base.gradle'
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
2021-06-16 00:34:11 -04:00
apply plugin: 'kotlin-parcelize'
2021-06-15 22:38:58 -04:00
2021-06-17 11:27:28 -04:00
android {
defaultConfig {
buildConfigField "String", "DB_NAME", '"acronyms.db"'
}
}
2021-06-15 22:38:58 -04:00
dependencies {
implementation project(':core')
2021-06-17 14:20:25 -04:00
testImplementation project(':core')
androidTestImplementation project(':core')
2021-06-15 22:38:58 -04:00
}