mirror of
https://github.com/imcarlost/Acronyms.git
synced 2026-04-09 18:38:28 -04:00
17 lines
335 B
Groovy
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')
|
|
}
|