增加多平台(Desktop、Android平台支持)

This commit is contained in:
BBIT-Kai
2025-06-18 10:22:15 +08:00
parent f02173c667
commit 02262e3a96
38 changed files with 1148 additions and 42 deletions
+35
View File
@@ -0,0 +1,35 @@
rootProject.name = "BBIT_AI"
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()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
include(":composeApp")