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 = "Privacy-Period-Tracker" // core/ads arrives with Batch 07 — see docs/architecture/README.md for why a // module is not created before it has contents. include(":app") include(":core:designsystem") include(":core:database") include(":core:datastore") include(":core:data") include(":core:notifications") include(":domain:cycle") include(":domain:prediction")