学考乐离线App
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.

settings.gradle 519B

123456789101112131415
  1. //settings.gradle位于文件的根目录,用于定义项目级代码库设置,并告知Gradle在构建应用时应将那些模块包含在内
  2. dependencyResolutionManagement {
  3. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  4. repositories {
  5. google()
  6. mavenCentral()
  7. jcenter() // Warning: this repository is going to shut down soon
  8. maven { url 'https://jitpack.io' }
  9. }
  10. }
  11. rootProject.name = "XklLocal"
  12. include ':app'
  13. include ':lib:common'
  14. include ':videoplayer'