Files
Sudo-Ivan 268fc11bd5
Some checks failed
Build and Release / Build and Release (push) Successful in 2m25s
Build and Release / build_docker (push) Failing after 9m25s
feat(android): initialize Android project with Gradle configuration, build scripts, and main application structure for MeshChatX
2026-01-01 21:09:22 -06:00

22 lines
427 B
Groovy

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url "https://chaquo.com/maven" }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://chaquo.com/maven" }
}
}
rootProject.name = "MeshChatX"
include ':app'