// Top-level Gradle settings: declares where plugins/dependencies are fetched from // and which sub-projects (modules) make up this build. We keep everything in a // single ":app" module to stay approachable for newcomers. pluginManagement { repositories { google() mavenCentral() gradlePluginPortal() } } dependencyResolutionManagement { // Fail the build if a module tries to declare its own repositories — all // dependencies must come from the two repos below. This keeps things simple. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() } } rootProject.name = "Sizzletracker" include(":app")