zoukankan      html  css  js  c++  java
  • androidstudio build 时间太长处理

    androidstudio升级后,build时间太长,各种依赖库、gradle库。昨晚回去前让它自动加载,今早来上班竟然还是没有完成。

    开启VPN 科学 上网还是慢如蜗牛

    最后没办法修改build.grale

    buildscript {
        repositories {
            google()
            maven{url "https://repo1.maven.org/maven2/"}
            maven{url "https://repository.jboss.org/maven2/"}
            maven{url "https://repository.sonatype.org/content/groups/public/"}
            maven{url "https://jitpack.io"}
            maven { url 'https://maven.aliyun.com/repository/apache-snapshots/' }
            maven { url 'https://maven.aliyun.com/repository/central/' }
            maven { url 'https://maven.aliyun.com/repository/google/' }
            maven { url 'https://maven.aliyun.com/repository/gradle-plugin/' }
            maven { url 'https://maven.aliyun.com/repository/jcenter/' }
            maven { url 'https://maven.aliyun.com/repository/public/' }
            maven { url 'https://maven.aliyun.com/repository/releases/' }
            maven { url 'https://maven.aliyun.com/repository/snapshots/' }
            // jcenter()
            jcenter(){url 'http://jcenter.bintray.com/'}
    
        }
        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 {
            google()
            maven{url "https://repo1.maven.org/maven2/"}
            maven{url "https://repository.jboss.org/maven2/"}
            maven{url "https://repository.sonatype.org/content/groups/public/"}
            maven{url "https://jitpack.io"}
            maven { url 'https://maven.aliyun.com/repository/apache-snapshots/' }
            maven { url 'https://maven.aliyun.com/repository/central/' }
            maven { url 'https://maven.aliyun.com/repository/google/' }
            maven { url 'https://maven.aliyun.com/repository/gradle-plugin/' }
            maven { url 'https://maven.aliyun.com/repository/jcenter/' }
            maven { url 'https://maven.aliyun.com/repository/public/' }
            maven { url 'https://maven.aliyun.com/repository/releases/' }
            maven { url 'https://maven.aliyun.com/repository/snapshots/' }
            // jcenter()
            jcenter(){url 'http://jcenter.bintray.com/'}
    
        }
    }
  • 相关阅读:
    flv网页视频播放
    Select显示多级分类列表
    DateTime获取一个月的第一天和最后一天
    服务器不装Excel读取Excel并转换DataTable
    ScriptX使用
    CheckBoxList 全选(jquery版本)
    div绝对定位针对手机浏览器的区别
    JAVA 基础编程练习题22 【程序 22 递归求阶乘】
    JAVA 基础编程练习题21 【程序 21 求阶乘】
    JAVA 基础编程练习题20 【程序 20 求前 20 项之和】
  • 原文地址:https://www.cnblogs.com/John5/p/11359614.html
Copyright © 2011-2022 走看看