The first step in setting up your environment for developing Android applications is downloading the Android SDK starter package. The starter package is not a full development environment — it includes only the core SDK Tools, which you can use to download the rest of the SDK components.
You can get the latest version of the SDK starter package from the SDK download page. Make sure to download the package that is appropriate for your development computer.
After downloading, unpack the Android SDK archive to a safe location on your machine. By default, the SDK files are unpacked into a directory named android-sdk-<machine-platform>
. Make a note of the name and location of the unpacked SDK directory on your system — you will need to refer to the SDK directory later, when setting up the ADT plugin or when using the SDK tools.
Optionally, you may want to add the location of the SDK's primary tools
directory to your system PATH
. The primary tools/
directory is located at the root of the SDK folder. Adding tools
to your path lets you run Android Debug Bridge (adb) and the other command line tools without needing to supply the full path to the tools directory.
- On Linux, edit your
~/.bash_profile
or ~/.bashrc
file. Look for a line that sets the PATH environment variable and add the full path to the tools/
directory to it. If you don't see a line setting the path, you can add one:
export PATH=${PATH}:<your_sdk_dir>/tools
- On a Mac OS X, look in your home directory for
.bash_profile
and proceed as for Linux. You can create the .bash_profile
if you haven't already set one up on your machine.
- On Windows, right-click on My Computer, and select Properties. Under the Advanced tab, hit the Environment Variables button, and in the dialog that comes up, double-click on Path (under System Variables). Add the full path to the
tools/
directory to the path.
If you will be using the Eclipse IDE as your development environment, the next section describes how to install the Android Development Tools (ADT) plugin and set up Eclipse. If you choose not to use Eclipse, you can develop Android applications in an IDE of your choice and then compile, debug and deploy using the tools included in the SDK (skip to Adding Platforms and Other Components).
分享到:
相关推荐
使用Python设置环境变量
- **批处理脚本**: 创建一个批处理文件,通过set命令设置环境变量,并使用setx命令将它们持久化到系统。例如: ``` set JAVA_HOME=C:\Program Files\Java\jdk1.8.0_251 setx JAVA_HOME "%JAVA_HOME%" set PATH=%...
Java设置环境变量是每个Java开发者必须掌握的基本技能之一。环境变量在计算机系统中扮演着重要角色,它们指示操作系统如何找到并执行程序。对于Java来说,正确的环境变量配置是确保JVM(Java虚拟机)能够正常运行的...
这篇博客将深入探讨如何在Linux中设置环境变量,并结合`Shell`编程进行学习。 首先,环境变量是全局的,它们在整个系统或特定用户会话中有效。常见的环境变量包括`PATH`(定义可执行文件的搜索路径)、`HOME`(用户...
在VC++ 6.0(Visual C++ 6.0)这个经典的开发环境中,程序员有时需要在用户安装软件时修改注册表以设置环境变量。这通常涉及到程序的安装过程,以便软件能正确运行或者与其他系统组件交互。环境变量是操作系统用来...
在Linux中设置环境变量,最常见的方法是在终端中使用export命令,但当需要一次性设置多个环境变量时,逐个敲入export命令显然效率低下,为此,可以采用批处理脚本的方式来高效配置。 首先,我们来解释一下什么是...
正确设置环境变量能够帮助用户简化软件的安装和使用过程,尤其是那些需要在命令行中调用的工具或依赖于特定库的程序。 "设置环境变量工具"是一款专为此目的设计的应用,它旨在简化环境变量的配置过程。这款工具的...
在这个场景中,我们要讨论如何在C#中设置环境变量,并使用`Environment`命名空间的相关方法。 `Environment`命名空间是.NET框架提供的一部分,它包含了与当前执行环境相关的静态类和方法。这些方法包括获取、设置和...
JAVA JDK 设置 环境变量 BAT
在IT行业中,尤其是在Windows操作...通过bat文件设置环境变量是一种方便且高效的方法,尤其在需要批量配置多台计算机或确保一致性的场景下。在实际工作中,理解如何正确配置这些环境变量对于Java开发和部署至关重要。
### ARM开发板上设置环境变量详解 在ARM开发板上设置环境变量是一项常见的操作,它对于软件开发、系统配置及优化具有重要的意义。本文将基于提供的文件内容,深入解析环境变量的相关概念及其在ARM开发板上的具体...
本篇将详细介绍如何将项目打包为可执行文件,并自动设置环境变量。 首先,我们需要理解什么是可执行文件`.exe`。`.exe`是Windows操作系统中的二进制文件格式,用于执行程序。开发者通常使用编程语言编写源代码,...
在计算机科学领域,环境变量是操作系统用来存储信息的变量,这些信息可以影响程序的执行或系统的行为。...通过观看“设置环境变量”的视频教程,你将能够快速掌握这一基础技能,从而更顺利地进行项目开发和学习。
java一键设置环境变量 jdk下载 jre下载 Eclipse下载 MyEclipse下载 绿色 无毒 小巧 适合初学者
如果不正确地设置环境变量,将可能导致错误。下面我们来详细介绍 U-Boot 的环境变量设置方法。 U-Boot 环境变量可以分为两大类,一类是U-Boot 自己定义的变量,另一类是用户自己定义的变量。下面,我们列出了一些...
### 使用 set 命令设置环境变量 在 Windows 命令行工具中,`set` 命令是一个非常有用的工具,它可以帮助用户管理和修改环境变量。通过本篇文章,我们将深入了解如何使用 `set` 命令设置环境变量,并探讨其高级功能...
本资源"JDK设置环境变量.rar"显然是关于如何配置JDK的环境变量的教程,这对于初学者或者遇到相关问题的开发者来说非常有价值。下面我们将详细讨论JDK环境变量的配置步骤及重要性。 首先,我们需要了解什么是环境...
"TOMCAT一键设置环境变量"指的是通过一个脚本文件(如一键设环境变量Tomcat.bat)快速配置这些必要的环境变量,使得用户无需手动逐个设置,从而提高工作效率。 一、JAVA_HOME JAVA_HOME是最重要的环境变量之一,它...
- 可以直接在命令行中使用 `export` 命令来临时设置环境变量,这种设置仅在当前 shell 会话中有效: ```bash export PATH=$PATH:/path1:/path2:/pathN ``` #### 四、查看已设置的环境变量 1. **使用`echo`命令...