当前位置:   article > 正文

Android Studio 项目gradle构建 仓库切换国内阿里源。_android studio koltin切换国内源

android studio koltin切换国内源

阿里源地址:https://maven.aliyun.com/mvn/view

在项目的build.grable里修改

  1. buildscript {
  2. ext.kotlin_version = '1.3.72'
  3. repositories {
  4. //对应google()
  5. maven {url 'https://maven.aliyun.com/repository/google'}
  6. //对应jcenter()
  7. maven {url 'https://maven.aliyun.com/repository/jcenter'}
  8. //公共库
  9. maven {url 'https://maven.aliyun.com/repository/public'}
  10. }
  11. dependencies {
  12. classpath 'com.android.tools.build:gradle:3.6.3'
  13. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  14. // NOTE: Do not place your application dependencies here; they belong
  15. // in the individual module build.gradle files
  16. }
  17. }
  18. allprojects {
  19. repositories {
  20. maven {url 'https://maven.aliyun.com/repository/google'}
  21. maven {url 'https://maven.aliyun.com/repository/jcenter'}
  22. maven {url 'https://maven.aliyun.com/repository/public'}
  23. }
  24. }

完毕,之后sync now 一下,一下不行,就两下,以此类推。。。

 
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/296436
推荐阅读
相关标签
  

闽ICP备14008679号