iooops 发表于 2017-1-13 03:20:35

【Android】Mac下如何搭建Android开发环境

本帖最后由 iooops 于 2017-1-13 03:24 编辑

楼主最近在学移动开发,默默地想着有一天用Arduino做了东西之后用蓝牙或者其他通信模块连上手机或者iPad,感觉还是很好玩的~

下面这篇文章是告诉我们怎么在Mac上搭建Android开发环境的。


-------------------------------------------------------------------------------------------------------------------------------------------------------------------
如何在Mac上配置Android的开发环境。


最近有点空闲,就在Mac上鼓捣了一下Android,发现配置开发环境还是比较简单的,但是中途也遇到了几个问题。
Java环境Mac下自带jdk,可使用 java -version 查询版本
http://upload-images.jianshu.io/upload_images/761142-7711f89f8f98691f.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240
查询jdk版本

要是真的没有安装JAVA的话,来这里下载。


IDE下载开发工具,我们使用Google提供的Android Studio。


[*]下载IDE Android开发者网站,下载Android Studio For Mac
http://upload-images.jianshu.io/upload_images/761142-45e321b754b44d04.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240
IDE下载
[*]下载NDKAndroidNDK,选择Mac OS X 64-bit,解压方法网站里面有。
http://upload-images.jianshu.io/upload_images/761142-ef3cc5c246e4baa9.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240
AndroidNDK下载

http://upload-images.jianshu.io/upload_images/761142-5273b8f17fe75381.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240
解压AndroidNDK

安装
[*]安装下载好的IDE android-studio-ide-141.2456560-mac.dmg
[*]导入下载的NDK到Android的IDE中去
http://upload-images.jianshu.io/upload_images/761142-5b1736f561bfb09c.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240
导入下载的NDK

问题
[*]启动IDE时,报错Unable to access Android SDK add on list

http://upload-images.jianshu.io/upload_images/761142-da820b766d42d76d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240
启动报错

问题分析:安装完成后,如果直接启动,Android Studio会去获取 android sdk 组件信息,这个过程相当慢,还经常加载失败,导致Android Studio启动不起开。
解决办法:不去获取android sdk 组件信息。
 1)进入应用程序,找到Android Studio,右键->显示包内容->Contents->bin,找到文件idea.properties,使用文本工具打开
 2)在idea.properties文件末尾添加一行:disable.android.first.run=true,然后保存文件。
 3)关闭Android Studio后重新启动,便可进入界面。

http://upload-images.jianshu.io/upload_images/761142-1c21bd4852c3b82f.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240
解决方案
[*]新建安卓工程时报错,Android Studio中新建项目时Your android sdk is out of date or is missing templates的解决办法,这就是SDK的问题了,基本上第一步完成,基本上没问题。

http://upload-images.jianshu.io/upload_images/761142-0cfd66682bd06ed0.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240
导入安卓开发SDK
[*]在线更新AndroidSDK问题,如果以上问题你都解决了,新建工程时,还是卡在这个界面。

http://upload-images.jianshu.io/upload_images/761142-bbc6f35482c991f5.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240
校验AndroidSDK


这说明你需要在线的更新AndroidSDK了
1):打开SDKManager,配置Http Proxy
http://upload-images.jianshu.io/upload_images/761142-6402513f1434fd46.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240
配置Http Proxy
2):在线更新

http://upload-images.jianshu.io/upload_images/761142-13277de9e6091c9d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240
SDK下载




参考原文:
http://www.jianshu.com/p/dcf5675c8a9e
谷歌中文安卓官网:http://android-studio.org/



页: [1]
查看完整版本: 【Android】Mac下如何搭建Android开发环境