博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ANDROID_HOME on Mac OS X
阅读量:4568 次
发布时间:2019-06-08

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

Where the Android-SDK is installed depends on how you installed it. If you downloaded the SDK through their website and then dragged/dropped the Application to your Applications folder, it's most likely in /Applications/ADT/sdk (as it is in your case).

If you installed it using Homebrew (brew install android-sdk), then it's located here:

/usr/local/Cellar/android-sdk/24.3.3 # Don't forget to check your SDK version.

Open the terminal window and enter the following (changing out the path to the SDK to be however you installed it):

export ANDROID_HOME=/Applications/ADT/sdk # or export ANDROID_HOME=/usr/local/Cellar/android-sdk/24.3.3

Once you have this set, you need to add this to the PATH environment variable

export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools

转载于:https://www.cnblogs.com/lilei9110/p/5181481.html

你可能感兴趣的文章
Java开源工具 网站开发工具清单
查看>>
POJ 1442 Black Box
查看>>
Python 内置模块:os模块
查看>>
C# 中的特性 Attribute
查看>>
Microsoft SQL Server, Error: 15128 ()
查看>>
§ 理论基础
查看>>
Atitit. . 软件命名空间与类名命名单词的统计程序设计v2
查看>>
Atitit.如何建立研发体系
查看>>
HttpHandler给本站加图片水印
查看>>
HTML Music Entities/音乐符号
查看>>
Linux signal 处理
查看>>
Oracle中merge into语法
查看>>
Vue2.x + vux2.x + vux-loader + typescript 搭建第一个环境
查看>>
MySQL的binlog日志
查看>>
vagrant The specified host network collides with a non-hostonly network!
查看>>
0x59 单调队列优化DP
查看>>
mysql中的union用法
查看>>
利用python爬取龙虎榜数据及后续分析
查看>>
Git和GitHub使用总结
查看>>
php array_multisort对数据库结果多个字段进行排序
查看>>