This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
// settings.gradle(项目根目录)
pluginManagement {
repositories {
google() // 必须加!安卓插件在谷歌仓库
mavenCentral() // 可选,其他插件(如Retrofit)在这
gradlePluginPortal() // Gradle官方插件仓库(默认)
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
google() // 项目依赖的仓库(如AndroidX、Material)
mavenCentral() // 第三方库仓库(如Retrofit)
rootProject.name = "MailClient" // 你的项目名(自定义)
include ':app' // 声明包含app模块(必须有!)