MAC下搭建Android Studio

JDK1.8安装:
1、到 http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 下载jdk8


2、双击安装


3. 安装完成,在命令行终端输入 java -version ,有输出版本号则 安装成功


4. 默认jre路径





Android Studio2.1安装:

1、到 http://www.android-studio.org下载mac版安装包

2、点击即可安装


3、安装完打开
4、打开时选“之前未安装过”,会弹出无sdk,点击“cancel”


5、安装自定义版


6、选择下载虚拟机


7、确认信息


8、开始下载相应工具和插件


9、新建Android项目,创建虚拟机,运行程序
gradle(model)的配置
apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.1"

defaultConfig {
applicationId "com.frosoft.helloworld"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.2.0'
}

gradle(project)的配置
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'

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

allprojects {
repositories {
jcenter()
}
}

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

10、运行结果

MAC下搭建Android Studio_第1张图片

你可能感兴趣的:(Android开发)