76f266645d
含 Phase 1.1 IM seq 排序、断线重连、多端已读同步与微信式语音转文字 UI。 排除 node_modules、构建产物、安装包与 .env 密钥。 Co-authored-by: Cursor <cursoragent@cursor.com>
35 lines
1.1 KiB
Groovy
35 lines
1.1 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 {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url "https://developer.huawei.com/repo/" }
|
|
maven { url "https://repos.vivo.com.cn/maven/repository/external-lib/" }
|
|
maven {
|
|
url "https://maven.columbus.heytapmobi.com/repository/releases/"
|
|
credentials {
|
|
username "nexus"
|
|
password "c0b08da17e3ec36c3870fed674a0bcb36abc2e23"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
|
id "com.android.application" version "8.9.1" apply false
|
|
id "org.jetbrains.kotlin.android" version "1.9.24" apply false
|
|
}
|
|
|
|
include ":app"
|