自以为按照教程很快就会创建自己第一个android App,没想到还是用了很长时间,中间走了很多坑,记下来,这也算自己的一个成长吧
首先按照官方的教程,新建一个工程
https://developer.android.google.cn/training/basics/firstapp/creating-project
build后有一个问题,
SSL peer shut down incorrectly 问题
解决方案见:https://www.jianshu.com/p/194b57cf7162
AndroidStudio 编译时出现如下问题
SSL peer shut down incorrectly
或者某些jar包下载不下来,一般是因为墙的原因导致的。这时候我们就需要配置镜像来解决这个问题。(为了提高jar包的下载速度也可以配置)配置的方法就是在根build.gradle中添加镜像仓库,一般我们选择阿里的 http://maven.aliyun.com/nexus/content/groups/public/
完整的如下所示buildscript { repositories { google() maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' } jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.2.1' } } allprojects { repositories { google() maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' } jcenter() } } task clean(type: Delete) { delete rootProject.buildDir }
这里需要注意要将jcenter放到最后一个,因为他就是那个下载慢,或者报错的罪魁祸首
此时虽然可以编译成功了,但是run按钮还是灰色的
解决:选择file——>sync project with gradles files;
显示成上图所示就可以了