安卓学习第一节--环境搭建及Android Studio 安装

Posted 隨风.NET

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓学习第一节--环境搭建及Android Studio 安装相关的知识,希望对你有一定的参考价值。

 

 

 

 

 

 

1.安装JDK

 

2.安装AS

安装参考网址 https://www.cnblogs.com/xiadewang/p/7820377.html

 

下载网址:

http://www.android-studio.org/

https://services.gradle.org/distributions/

注意:

1.这个下载很慢,估计不要1个小时也要40分钟

 

2.Build项目的时候非常的慢,要参考下面的修改(不要开启只线下编译)

 

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        maven{ url \'http://maven.aliyun.com/nexus/content/groups/public/\'}
        google()
        jcenter()
    }
    dependencies {
        classpath \'com.android.tools.build:gradle:3.2.0\'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        maven{ url \'http://maven.aliyun.com/nexus/content/groups/public/\'}
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

  

https://blog.csdn.net/qq_34564357/article/details/78347180

 

3.安装模拟器

可以安装海马玩模拟器

 

4.as设置

智能提示\\文字大小\\安卓最小版本\\权限

 

 

 

以上是关于安卓学习第一节--环境搭建及Android Studio 安装的主要内容,如果未能解决你的问题,请参考以下文章

安卓学习进程Android开发环境的搭建

python学习第一节之环境搭建

第一节 搭建开发环境

Angular最新教程-第一节环境搭建和新建项目

android开发环境搭建

安卓第一课:android studio 的环境搭建与真机运行以及遇到的问题