android 解决android studio编译慢问题
程序员文章站
2022-03-03 19:18:55
1、我们编译代码的时候经常会出现build超级慢,有时候可能得等十几二十分钟,因为我们用了谷歌的加载导致会很慢(maven { url "https://maven.google.com/"}),这句一定不能加,可以加阿里云的,这样我们编译速度会快非常多倍,下面是配置文件,对着加进去就可以了。buildscript { repositories { maven { url 'http://maven.aliyun.com/nexus/content/groups/pub....
1、我们编译代码的时候经常会出现build超级慢,有时候可能得等十几二十分钟,因为我们用了谷歌的加载导致会很慢(
maven { url "https://maven.google.com/"}),这句一定不能加,可以加阿里云的,这样我们编译速度会快非常多倍,下面是配置文件,对着加进去就可以了。
buildscript {
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/gradle-plugin' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0'
}
}
allprojects {
repositories {
maven { url 'https://dl.bintray.com/umsdk/release' }
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
}
}
本文地址:https://blog.csdn.net/u011324501/article/details/111831872
推荐阅读
-
Android闹钟启动时间设置无效问题的解决方法
-
Android ImageView 不显示JPEG图片的问题解决
-
Android webview旋转屏幕导致页面重新加载问题解决办法
-
Android 将view 转换为Bitmap出现空指针问题解决办法
-
Android ScrollView 下嵌套 ListView 或 GridView出现问题解决办法
-
Android 中出现java.net.BindException: bind failed: EADDRINUSE 问题解决办法
-
Android 开发手机(三星)拍照应用照片旋转问题解决办法
-
解决Mono For Android不能编译问题:Could not create the Android package
-
Android中Fragment 重叠遮盖问题解决办法
-
深入android中The connection to adb is down的问题以及解决方法