当前位置:   article > 正文

【Android】【Repository】Build_android build gradle repository

android build gradle repository

Android Studio Version:
在这里插入图片描述
使用自己的仓库:
之前都是在build.gradle中添加:

allprojects {
    repositories {
        jcenter()
        maven { url "https://jitpack.io" }
        maven {
            url "http://artifactory.xxx"
            credentials {
                username = "xxx"
                password = "xxx"
            }
        }
        flatDir {
            dirs 'libs'
        }
        google()
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

结果最近在build.gradle添加后报错,需要添加在setting.gradle中

    repositories {
        google()
        mavenCentral()
        jcenter() // Warning: this repository is going to shut down soon
        maven {
            url "http://artifactory.xxx"
            allowInsecureProtocol = true
            credentials {
                username = "xxx"
                password = "xxx"
            }
        }
        flatDir {
            dirs 'libs'
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/311585
推荐阅读
相关标签
  

闽ICP备14008679号