我是靠谱客的博主 动听西牛,最近开发中收集的这篇文章主要介绍新装Android studio无法联网,总是报错Could not get resource 'https://jcenter.bintray.com,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

最近电脑重装系统了,下载了AS,新建工程却总是没办法同步成功,后面把build.gradle改成如下,就可以成功了。

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' }
        jcenter { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
        maven{ url 'http://maven.aliyun.com/nexus/content/repositories/central/'}
        google()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' }
        jcenter { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
        maven{ url 'http://maven.aliyun.com/nexus/content/repositories/central/'}
        google()

    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

 

最后

以上就是动听西牛为你收集整理的新装Android studio无法联网,总是报错Could not get resource 'https://jcenter.bintray.com的全部内容,希望文章能够帮你解决新装Android studio无法联网,总是报错Could not get resource 'https://jcenter.bintray.com所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部