공부
[gradle] allow insecure protocols, android gradle
승가비
2023. 4. 17. 20:19
728x90
repositories {
maven {
url "http://oss.sonatype.org/content/repositories/snapshots"
allowInsecureProtocol = true
}
// other repositories ...
}
repositories {
maven {
url = uri("http://oss.sonatype.org/content/repositories/snapshots")
isAllowInsecureProtocol = true
}
// other repositories ...
}
https://stackoverflow.com/questions/68585885/allow-insecure-protocols-android-gradle
Allow insecure protocols, android gradle
I recently updated my android studio to Arctic Fox and got an error in my project A problem occurred configuring root project 'so10'. > Could not resolve all dependencies for configuration ':cla...
stackoverflow.com
728x90