2026-01-23 17:07:47 +11:00
|
|
|
rootProject.name = "Neon"
|
|
|
|
|
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()
|
2026-01-25 03:31:24 +11:00
|
|
|
maven("https://jitpack.io")
|
2026-01-23 17:07:47 +11:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-23 19:05:25 +11:00
|
|
|
include(":core")
|
2026-01-23 23:31:31 +11:00
|
|
|
include(":ui")
|