AndroidStudio3.5.2 打包 插件供 AppCan 来使用出现的问题

前提: 设置代理

AndroidStudio3.5.2 打包 插件供 AppCan 来使用出现的问题_第1张图片

maven { url "https://maven.aliyun.com/repository/google"}
maven { url "https://maven.aliyun.com/repository/jcenter"}
maven { url "https://maven.aliyun.com/nexus/content/groups/public"}
maven { url"https://jitpack.io"}

或者是:

//jcenter()
//google()
mavenCentral()

AndroidStudio3.5.2 打包 插件供 AppCan 来使用出现的问题_第2张图片

改完之后,出现了下面这个问题:

ERROR: No cached version of com.android.tools.build:gradle:3.0.1 available for offline mode.
Disable Gradle 'offline mode' and sync project

错误:没有缓存的版本安卓工具.建造:gradle:3.0.1可用于脱机模式。

AndroidStudio3.5.2 打包 插件供 AppCan 来使用出现的问题_第3张图片

解决办法:

设置-》Gradle ->  看看右侧的

offline work 是否打钩了,如果打钩了,取消掉,然后重新gradle一下,应该就正常了。

可以转圈圈了, 但是又出现下面问题:

ERROR: Unknown host 'raw.githubusercontent.com'. You may need to adjust the proxy settings in Gradle.
Learn about configuring HTTP proxies in Gradle

 

错误:未知主机'raw.githubusercontent.com网站'. 您可能需要在Gradle中调整代理设置。

了解如何在Gradle中配置HTTP代理

AndroidStudio3.5.2 打包 插件供 AppCan 来使用出现的问题_第4张图片

原因是:找不到 raw.githubusercontent.com 的服务器 IP 地址, 一般都是无法连接到相应的网站,需要设置代理。

打开这个网址:https://site.ip138.com/raw.Githubusercontent.com/

输入raw.githubusercontent.com

查询IP地址。

添加以下内容(在hosts文件中添加IP地址)保存即可 (IP地址查询后相应修改,可以ping不同IP的延时 选择最佳IP地址)

# GitHub Start
52.74.223.119 github.com
192.30.253.119 gist.github.com
54.169.195.247 api.github.com
185.199.111.153 assets-cdn.github.com
151.101.76.133 raw.githubusercontent.com
151.101.108.133 user-images.githubusercontent.com
151.101.76.133 gist.githubusercontent.com
151.101.76.133 cloud.githubusercontent.com
151.101.76.133 camo.githubusercontent.com
151.101.76.133 avatars0.githubusercontent.com
151.101.76.133 avatars1.githubusercontent.com
151.101.76.133 avatars2.githubusercontent.com
151.101.76.133 avatars3.githubusercontent.com
151.101.76.133 avatars4.githubusercontent.com
151.101.76.133 avatars5.githubusercontent.com
151.101.76.133 avatars6.githubusercontent.com
151.101.76.133 avatars7.githubusercontent.com
151.101.76.133 avatars8.githubusercontent.com
# GitHub End

AndroidStudio3.5.2 打包 插件供 AppCan 来使用出现的问题_第5张图片

 

 

 

 

你可能感兴趣的:(Android)