Menagerie_Cookbook/settings.gradle.kts
2025-02-23 12:45:57 -05:00

24 lines
621 B
Kotlin

rootProject.name = "RecipeAppKMP"
include(":androidApp")
include(":shared")
include(":desktopApp")
include(":webApp")
include(":tvApp")
include(":automotiveApp")
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
google{
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
}
}