Linux下命令行安装配置android sdk

时间:2022-11-15 05:44:24

首先, 你得有个VPN

参考以下三篇完成Android SDK的安装

https://www.digitalocean.com/community/tutorials/how-to-build-android-apps-with-jenkins

http://*.com/questions/4681697/is-there-a-way-to-automate-the-android-sdk-installation

http://developer.android.com/sdk/installing/adding-packages.html

首先到 https://developer.android.com/sdk/index.html 下载SDK Tools Only, 我下的是 android-sdk_r24.1.2-linux.tgz

在linux里解压缩, 用于下载组件的是tools/android. 参数说明

Action "update sdk":
Updates the SDK by suggesting new platforms to install if available.
Options:
-f --force Forces replacement of a package or its parts, even if something has been modified
-u --no-ui Updates from command-line (does not display the GUI)
-o --obsolete Installs obsolete packages
-t --filter A filter that limits the update to the specified types of packages in the form of
a comma-separated list of [platform, tool, platform-tool, doc, sample, extra]
-s --no-https Uses HTTP instead of HTTPS (the default) for downloads
-n --dry-mode Simulates the update but does not download or install anything

查看可用的组件

android list sdk --all

会得到一个类似以下的列表, 把要下载的序号记下来

   - Android SDK Tools, revision 24.1.
- Android SDK Platform-tools, revision
- Android SDK Build-tools, revision 22.0.
- Android SDK Build-tools, revision (Obsolete)
- Android SDK Build-tools, revision 21.1.
- Android SDK Build-tools, revision 21.1. (Obsolete)
- Android SDK Build-tools, revision 21.1 (Obsolete)
- Android SDK Build-tools, revision 21.0. (Obsolete)
- Android SDK Build-tools, revision 21.0. (Obsolete)
- Android SDK Build-tools, revision (Obsolete)
- Android SDK Build-tools, revision
- Android SDK Build-tools, revision 19.1
- Android SDK Build-tools, revision 19.0. (Obsolete)
- Android SDK Build-tools, revision 19.0. (Obsolete)
- Android SDK Build-tools, revision 19.0. (Obsolete)
- Android SDK Build-tools, revision (Obsolete)
- Android SDK Build-tools, revision 18.1. (Obsolete)
- Android SDK Build-tools, revision 18.1 (Obsolete)
- Android SDK Build-tools, revision 18.0. (Obsolete)
- Android SDK Build-tools, revision (Obsolete)
- Documentation for Android SDK, API , revision
- SDK Platform Android 5.1., API , revision
- SDK Platform Android 5.0., API , revision
- SDK Platform Android .4W., API , revision
- SDK Platform Android 4.4., API , revision
- SDK Platform Android 4.3., API , revision
- SDK Platform Android 4.2., API , revision

下载需要的组件, 注意--all 这个参数一定要加上, 否则后面filter里的序号不起作用, 例如我用的是

android update sdk -u --all --filter ,,,,,,,,,,,,,,,

然后等待其安装完成就可以了