- BLE: 修复 BlueZ LocalName 与 Includes 冲突,串行注册与退避 - HTTP: 语音对话补 Live2D talking 标志与 session;Web 补 X-Session-Id - Flutter: 角色/对话/模型页 + API,Gradle/依赖升级,麦克风权限 - 文档: 新增 docs/STATUS.md,校准 CLAUDE/PROGRESS/README - 清理: 移除根目录截图与临时模型,运维脚本迁入 scripts/device
40 lines
1.3 KiB
Groovy
40 lines
1.3 KiB
Groovy
pluginManagement {
|
|
def flutterSdkPath = {
|
|
def properties = new Properties()
|
|
file('local.properties').withInputStream { properties.load(it) }
|
|
def flutterSdkPath = properties.getProperty('flutter.sdk')
|
|
assert flutterSdkPath != null, 'flutter.sdk not set in local.properties'
|
|
return flutterSdkPath
|
|
}()
|
|
|
|
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
|
|
|
repositories {
|
|
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
|
maven { url 'https://maven.aliyun.com/repository/google' }
|
|
maven { url 'https://maven.aliyun.com/repository/central' }
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'dev.flutter.flutter-plugin-loader' version '1.0.0'
|
|
id 'com.android.application' version '8.7.3' apply false
|
|
id 'org.jetbrains.kotlin.android' version '2.1.0' apply false
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
|
|
repositories {
|
|
maven { url 'https://maven.aliyun.com/repository/google' }
|
|
maven { url 'https://maven.aliyun.com/repository/central' }
|
|
maven { url 'https://storage.googleapis.com/download.flutter.io' }
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
include ':app'
|