You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
705 B

This file contains ambiguous Unicode characters!

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)
repositories {
google() // 项目依赖的仓库如AndroidX、Material
mavenCentral() // 第三方库仓库如Retrofit
}
}
rootProject.name = "MailClient" // 你的项目名(自定义)
include ':app' // app