Fix: Complete Android project with proper Gradle setup
Android Build / build (push) Failing after 9s

This commit is contained in:
amos
2026-06-02 09:45:02 +08:00
commit a529be8615
12 changed files with 181 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Demo"
include ':app'