zoukankan      html  css  js  c++  java
  • gradle配置国内镜像

      Android Studio在构建项目时会拉取gradle资源,而goole和jcenter在国内的网络环境并不好用,容易产生connect timeout等错误。

      因此将地址修改成阿里云的国内镜像。

    一、允许使用maven仓库

      点击File->Settings进入设置界面,勾选“Enable embedded Maven repository”,如下图:

    二、修改build.gradle

      在项目文件中找到build.gradle文件,修改其中的buildscript和allprojects地址:

    buildscript {
        repositories {
            maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/' }
            maven{ url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:3.3.0-alpha13'
        }
    }
    allprojects {
        repositories {
            maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
            maven{ url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
        }
    }
    task clean(type: Delete) {
        delete rootProject.buildDir
    }
    

      

    如下图:

       gradle的文件下载下来以后会保存在本地,也有缓存。这意味着不同的项目如果有相同的gradle依赖,则不需要重复下载。因此也不是每次打开新项目都需要修改build.gradle文件。

      如果修改build.gradle后重新build还是有错,可以尝试新建一个相同API版本的项目。

  • 相关阅读:
    10.聚焦爬虫和通用爬虫的区别
    ethereum(以太坊)(基础)--容易忽略的坑(三)
    ethereum(以太坊)(基础)--容易忽略的坑(二)
    ethereum(以太坊)(基础)--容易忽略的坑(一)
    jQuery(四)--HTTP请求
    jQuery(三)HTML
    jQuery(一)初识
    jQuery(二)事件
    ethereum Pet Shop
    web3.js_1.x.x--API(一)event/Constant/deploy/options
  • 原文地址:https://www.cnblogs.com/yangshifu/p/9801659.html
Copyright © 2011-2022 走看看