android-sdk已正式上游停产
android-sdk has been officially discontinued upstream
使用自制软件安装 android sdk 时,我收到此消息
android-sdk has been officially discontinued upstream.
但是我找不到可以使用的替代包。我应该使用另一种吗?
每https://developer.android.com/studio/releases/sdk-tools
Note: This SDK Tools package is deprecated and no longer receiving updates. Instead, please use the new command-line tools package.
查看 https://developer.android.com/studio
brew install android-studio
如果您不想要完整的 android-studio
开发应用程序(Intellij IDE 等)而只想要新的命令行工具...
根据 discontinuation notice...
This SDK Tools package is deprecated and no longer receiving updates. Instead, please use the new command-line tools package.
快速搜索发现,在自制领域,这个新的“命令行工具”包称为 android-commandlinetools
。
$ brew remove android-sdk
$ brew install android-commandlinetools
如果您正在寻找 adb
等,这些是 "SDK Platform Tools" 并且可以使用 sdkmanager
安装(由新的 android-commandlinetools
软件包安装)。 ..
$ sdkmanager --install platform-tools
根据 sdkmanager
安装 platform-tools
的位置,您可能需要更新 $PATH
或添加符号链接以便 运行 adb
和其他平台-没有绝对路径的工具。
...或者如果您只想要 adb
/等,您可以跳过完整的命令行工具并直接使用自制软件安装 platform-tools
。这具有确保新安装的 adb
在您的 $PATH
中的附带好处,对于那些不进行 android 开发而只想要最新的 [=15] 的人来说,这可能是最佳选择=]、fastboot
、等等
$ brew install android-platform-tools
使用自制软件安装 android sdk 时,我收到此消息
android-sdk has been officially discontinued upstream.
但是我找不到可以使用的替代包。我应该使用另一种吗?
每https://developer.android.com/studio/releases/sdk-tools
Note: This SDK Tools package is deprecated and no longer receiving updates. Instead, please use the new command-line tools package.
查看 https://developer.android.com/studio
brew install android-studio
如果您不想要完整的 android-studio
开发应用程序(Intellij IDE 等)而只想要新的命令行工具...
根据 discontinuation notice...
This SDK Tools package is deprecated and no longer receiving updates. Instead, please use the new command-line tools package.
快速搜索发现,在自制领域,这个新的“命令行工具”包称为 android-commandlinetools
。
$ brew remove android-sdk
$ brew install android-commandlinetools
如果您正在寻找 adb
等,这些是 "SDK Platform Tools" 并且可以使用 sdkmanager
安装(由新的 android-commandlinetools
软件包安装)。 ..
$ sdkmanager --install platform-tools
根据 sdkmanager
安装 platform-tools
的位置,您可能需要更新 $PATH
或添加符号链接以便 运行 adb
和其他平台-没有绝对路径的工具。
...或者如果您只想要 adb
/等,您可以跳过完整的命令行工具并直接使用自制软件安装 platform-tools
。这具有确保新安装的 adb
在您的 $PATH
中的附带好处,对于那些不进行 android 开发而只想要最新的 [=15] 的人来说,这可能是最佳选择=]、fastboot
、等等
$ brew install android-platform-tools