博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mac下android环境搭建
阅读量:6378 次
发布时间:2019-06-23

本文共 4056 字,大约阅读时间需要 13 分钟。

  hot3.png

The Android Development Tools
Here are the tools needed to build Android apps:
• Sun’s Java Development Kit (JDK)
• Android Software Developer Kit (SDK)
• Eclipse IDE
• Android Developer Tool (ADT) Eclipse plug-in
Java Development Kit
The first piece of good news for Mac developers is that Mac OS X has JDK 5 already installed, so we can scratch that off the list.
If you are running Windows or Linux, download and install JDK 5 or 6, you can find the  .
Also worth mentioning before we continue is that Eclipse is not required, however, with the plug-in that Google has developed for Eclipse, they have made the process of editing, compiling, running and debugging quite easy.
Android Software Development Kit
To get things rolling, start by  , choosing the platform you need for your system.
Once you have the zip file downloaded, extract the contents to a folder on your system. In my case, I opted for my home directory in a folder named Android, see the figure below:
In the tools directory, run the application 
android. From the dialog box that is shown, select 
Available Packages from the list on the left.
Once you tick the checkbox, a list of sites, packages and archives will appear, choose 
Install Selected to begin the download process.
Eclipse IDE
It will take a few minutes to download the SDK, so this is a good time to download and install Eclipse. There are a number of Eclipse versions available, my choice was  .
To install Eclipse, unzip the download into a folder. Since Android development is currently my only need for the IDE, I extracted the files into the
android folder created previously, in a new folder with the name
eclipse:
Install Android Development Tools (ADT)
All the Android tools should now be downloaded. To install the development tools, start Eclipse – from the eclipse folder (wherever you installed it), double click the application Eclipse. From the 
Help menu, choose 
Install New Software.
Enter the path shown in the dialog box below when prompted and then click 
Add:
From the 
Add Site dialog, enter the information as shown here and click 
OK:
You will now be returned to the previous install dialog, go ahead and click the Developer Tools checkbox.
Click 
Next a few times to get to the license agreement, review the agreements and click 
Finish to install.
You will get a warning that you are installing unsigned software, select 
OK to continue:
When prompted, restart Eclipse.
Configure Android Development Kit (ADK) within Eclipse
We now need to setup ADK within Eclipse, which entails pointing Eclipse to the Android SDK.
From with Eclipse, click the 
Eclipse menu item and choose 
Preferences. From the list, choose Android, chances are you will see the popup shown below, stating that the SDK has not yet been installed:
Navigate to the folder where Android SDK is installed and click OK:
Update Environment Variables
We can save ourselves some trouble (read frustration) in the future by adding a reference to the Android tools into our path.
In 
Finder, go to your home directory and open the file 
.bash_profile – this is a hidden file (hence the preceding dot in the filename).
Add the following line to the file, replacing 
/Users/JOHN/Android/tools with the proper path to where you installed the Android tools
export 
PATH=
${PATH}:
/Users
/JOHN
/Android
/tools
Linux: Same as Mac, adding the export to ~/.bash_profile or ~/.bashrc file.
Windows: Right-click on My Computer, and select Properties. On the Advanced tab, click Environment Variables button. A dialog should appear, double-click on Path (under System Variables). Add the full path to the tools directory for Android to the existing path.
And That Does It
At this point we should be good to go. If you run into any issues, or need some help troubleshooting, please refer to the Android Developer site and review   notes.
In the next post I’ll jump into creating an Android application, including how to configure an Android Virtual Device (AVD), which will provide a means to run the app in an emulator.

转载于:https://my.oschina.net/Davin/blog/80478

你可能感兴趣的文章
当Cacti遭遇大流量
查看>>
Outlook Anywhere 客户端配置详解
查看>>
《Windows Server 2008 R2系统管理实战》前言与内容提要
查看>>
轻巧的网络流量实时监控工具NTOPNG
查看>>
Access、Sql 获取当前插入的主键ID
查看>>
聚类算法之DBScan(Java实现)
查看>>
为什么要使用AOP?
查看>>
VC :模板类
查看>>
对C++中string类型的总结
查看>>
Oracle发布公共云Public Cloud
查看>>
eclipse高亮显示
查看>>
Shell 操作数据库
查看>>
if lte IE if gte IE 浏览器兼容
查看>>
基于Lumisoft.NET组件和.NET API实现邮件发送功能的对比
查看>>
C#数据库访问技术之DATAREADER对象读取数据
查看>>
各种排序方法
查看>>
编译时程序透彻理解异常并合理使用异常
查看>>
2013年5月18日星期六
查看>>
js 字符串操作函数集合
查看>>
nullnullCF 312B(Archer-等比数列极限求和)
查看>>