Basic list of conversations (UI only) are working using Jetpack Compose. Next step is to try and get data loading from a Room database. Ideally, I can have a test data store and a real data store, and some way to switch between them.
17 lines
332 B
Groovy
17 lines
332 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
rootProject.name = "KordophoneDroid"
|
|
include ':app'
|