mirror of
https://github.com/imcarlost/Friendlists.git
synced 2026-04-10 02:46:54 -04:00
15 lines
313 B
Groovy
15 lines
313 B
Groovy
apply plugin: 'com.android.library'
|
|
apply from: '../core.gradle'
|
|
|
|
android {
|
|
defaultConfig {
|
|
buildConfigField "String", "DB_NAME", '"userlist.db"'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':base')
|
|
testImplementation project(':testing')
|
|
androidTestImplementation project(':testing')
|
|
}
|