31 lines
752 B
Text
31 lines
752 B
Text
|
rootProject.name = "AnandBose"
|
||
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
||
|
|
||
|
pluginManagement {
|
||
|
repositories {
|
||
|
google {
|
||
|
mavenContent {
|
||
|
includeGroupAndSubgroups("androidx")
|
||
|
includeGroupAndSubgroups("com.android")
|
||
|
includeGroupAndSubgroups("com.google")
|
||
|
}
|
||
|
}
|
||
|
mavenCentral()
|
||
|
gradlePluginPortal()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencyResolutionManagement {
|
||
|
repositories {
|
||
|
google {
|
||
|
mavenContent {
|
||
|
includeGroupAndSubgroups("androidx")
|
||
|
includeGroupAndSubgroups("com.android")
|
||
|
includeGroupAndSubgroups("com.google")
|
||
|
}
|
||
|
}
|
||
|
mavenCentral()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
include(":composeApp")
|