b1f7a029fa
android-platform-tools: Update to 23.0.1 Closes Homebrew/homebrew#44639. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
16 lines
546 B
Ruby
16 lines
546 B
Ruby
class AndroidPlatformTools < Formula
|
|
desc "Tools for the Android SDK"
|
|
homepage "https://developer.android.com/sdk"
|
|
# the url is from:
|
|
# https://dl.google.com/android/repository/repository-10.xml
|
|
url "https://dl.google.com/android/repository/platform-tools_r23.0.1-macosx.zip"
|
|
version "23.0.1"
|
|
sha256 "d2439f5de236c3831c048b678653c5955487351be8e196c65923b4eca5c47692"
|
|
|
|
conflicts_with "android-sdk",
|
|
:because => "the Android Platform-tools are part of the Android SDK"
|
|
|
|
def install
|
|
bin.install "adb", "fastboot"
|
|
end
|
|
end
|