onionwire/android/settings.gradle.kts

29 lines
717 B
Text
Raw Permalink Normal View History

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "onionwire-android"
// The Android library that ships as the AAR (Kotlin bindings + native .so).
include(":sdk")
// The installable Compose messenger. Depends on :sdk only — never on the TUI.
include(":app")