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.
1234567891011121314 |
- //settings.gradle位于文件的根目录,用于定义项目级代码库设置,并告知Gradle在构建应用时应将那些模块包含在内
- dependencyResolutionManagement {
- repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
- repositories {
- google()
- mavenCentral()
- jcenter() // Warning: this repository is going to shut down soon
-
- maven { url 'https://jitpack.io' }
- }
- }
- rootProject.name = "XklLocal"
- include ':app'
- include ':lib:common'
|