解决android studio引用远程仓库下载慢(JCenter下载慢)

本文介绍了解决android studio引用远程仓库下载慢的两种方法,具体如下:

第一种方法

使用开源中国的maven库

阿里云的(速度飞快):http://maven.aliyun.com/nexus/content/groups/public/

替换项目根目录下build.gradle中的

 repositories {
   jcenter()
 }

为:

 repositories {
  maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
 }

第二种方法

修改https为 http协议下载
http://jcenter/bintray.com/

替换项目根目录下build.gradle中的

 repositories {
   jcenter()
 }

为:

 repositories {
  jcenter(){ url 'http://jcenter.bintray.com/'}
 }

到此这篇关于解决android studio引用远程仓库下载慢(JCenter下载慢)的文章就介绍到这了,更多相关android studio引用远程仓库下载慢内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • 解决android studio 3.0 加载项目过慢问题--maven仓库选择

    今天用android studio 3.0打开项目时发现一直在谷歌的maven仓库加载 卡到这不动了,看了下maven仓库的配置发现: buildscript { repositories { jcenter() maven { url 'https://maven.google.com' name 'Google' } google() } dependencies { classpath 'com.android.tools.build:gradle:3.0.0' // NOTE: Do n

  • Android Studio导入项目非常慢的解决方法

    Android Studio原生支持使用Gradle来构建项目,使用动态语言Groovy定义项目构建的过程,避免了build.xml文件繁琐的定义. 然而使用的时候,却有着巨大的缺陷.由于Android Studio在升级的时候,可能会伴随着Gradle版本的升级,Gradle就会产生若干的版本. 为了保证程序不会因为Gradle版本不同导致问题,又产生了Gradle Wrapper,它的作用就是让项目绑定一个Gradle版本,当我们导入项目时,会自动下载相应的Gradle版本. 问题来了 这就

  • 解决Android Studio导入项目非常慢的办法

    前言 大家都知道Android Studio目前已经更新到2.0 Preview 6了,作为Google大力推崇的开发工具,相对于Eclipse ADT有着不可比拟的优势.然而在实际使用时,依然有不少不爽的地方.Android Studio原生支持使用Gradle来构建项目本是个不错的想法,使用动态语言Groovy定义项目构建过程,避免了build.xml文件的繁琐定义.但是Gradle的二进制包体积较大,而且用户可能按照了不同的Gradle版本,构建时可能会出现各种问题.因此又提出了Gradl

  • 解决android studio引用远程仓库下载慢(JCenter下载慢)

    本文介绍了解决android studio引用远程仓库下载慢的两种方法,具体如下: 第一种方法 使用开源中国的maven库 阿里云的(速度飞快):http://maven.aliyun.com/nexus/content/groups/public/ 替换项目根目录下build.gradle中的 repositories { jcenter() } 为: repositories { maven{url 'http://maven.aliyun.com/nexus/content/groups/

  • 完美解决Android Studio集成crashlytics后无法编译的问题

    问题描述: 在用fabric集成后编译出现如下错误, Error:Cause: hostname in certificate didn't match: <maven.fabric.io> != <*.motili.com> OR <*.motili.com> OR <motili.com> build.gradle部分脚本(fabric插件自动生成的): buildscript { repositories { maven { url 'https://

  • 解决android studio android monitor打不开的问题

    1.问题截图如下: 2.问题出现的原因:个人推断是由于更新谷歌推过来的更新所致(因为我在公司电脑上和个人笔记本上装了同样的android studio 2.3.3版本,个人笔记本将每次都更新谷歌插件,台式机没更过,结果就杯具了,公司台式机可正常打开android device monitor,个人笔记本打不开): 3.问题最开始提示的是Jdk版本太低,因此下载了最新的jdk1.9版本...此处略去配置变量等等.满心欢喜打开AS,结果还是提示我上图的错误提示.而且我多次打开和关闭android d

  • 解决Android Studio Design界面不显示layout控件的问题

    Android Studio更新到3.1.3后,发现拖到Design中的控件在预览界面中不显示: 解决办法: 在Styles.xml中的parent="..."中的Theme前添加Base <resources> <!-- Base application theme. --> <style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar&quo

  • 解决Android studio xml界面无法预览问题

    如下图 修改style.xml中的 parent="Theme.AppCompat.Light.DarkActionBar" 改为 parent="Base.Theme.AppCompat.Light.DarkActionBar" <!-- Base application theme. --> <style name="AppTheme" parent="Base.Theme.AppCompat.Light.Dark

  • 解决Android Studio一直停留在MyApplication:syncing的问题

    在我们打开Android Studio时,可能出现一直停留在MyApplication:syncing的情况(下图的情况),我在此给出解决办法 注意看你的绿色框框位置的的zip是什么样的,在下面的链接中找到一样的压缩包下载下来. 注意,一定要下载相同的!! 链接:点这里 然后打开电脑C盘 打开C:\Users\用户名\.gradle\wrapper\dists\gradle-5.4.1-all\3221gyojl5jsh0helicew7rwx这个位置的文件夹 你的这个位置可能没有这些文件,应该

  • 解决Android Studio sdk emulator directory is missing问题

    今天在安装Android Studio时,发现无法下载SDK,如下图所示: 网上看了一圈后,发现是代理的问题. 我之前的代理配置为 意识到是代理的问题后,我尝试把代理配置改成自动检测URL,如下图所示: 然后就可以愉快地下载SDK啦. 到此这篇关于解决Android Studio sdk emulator directory is missing问题的文章就介绍到这了,更多相关Android Studio sdk问题内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

  • 解决Android studio 2.3升级到Android studio 3.0 后apt报错问题

    1.现象描述 原来项目在Android studio 2.3一切正常,升级3.0之后报如下错误: Error:Cannot choose between the following configurations of project :android_sdk: - debugApiElements - debugRuntimeElements - releaseApiElements - releaseRuntimeElements All of them match the consumer

  • 解决Android Studio 3.0 butterknife:7.0.1配置的问题

    网上教程7.0大多数配置是这样compile 'com.jakewharton:butterknife:7.0.1' ,不知道他们用的Android Studio是多少版本,我用的3.0并没有成功,报错如下: Error:Execution failed for task ':app:javaPreCompileDebug'. Annotation processors must be explicitly declared now. The following dependencies on

随机推荐