Files
hermes/mobile/android-app/settings.gradle.kts
T
love 260f27728b complete Android build setup and study flow
Add a real Gradle wrapper, local SDK wiring, and the missing Android study screens so the module builds cleanly.
2026-04-09 16:46:25 +02:00

19 lines
334 B
Kotlin

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "hermes-android"
include(":app")