17 lines
544 B
Plaintext
17 lines
544 B
Plaintext
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.kotlin.compose) apply false
|
|
}
|
|
|
|
// 处理 GeckoView Glean 依赖冲突:强制使用统一版本
|
|
subprojects {
|
|
project.configurations.all {
|
|
resolutionStrategy.eachDependency {
|
|
if (requested.group == "org.mozilla.telemetry" && requested.name.contains("glean")) {
|
|
useVersion("52.7.0")
|
|
}
|
|
}
|
|
}
|
|
}
|