homebrew-core/Formula/android-platform-tools.rb
Benjamin Kerensa 29eb20d05a android-platform-tools 23.0.0
Bump android-platform-tools to 23.0.0 this fixes many bugs in android=platform-tools
that made flashing impossible using the flash-all.sh that google distributes with images.

Closes Homebrew/homebrew#43041.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-08-18 03:47:26 +01:00

16 lines
542 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-macosx.zip"
version "23.0.0"
sha256 "a5ed48f56f784fcba35e3650c001fff49de75d3631d2fc2c83479a9ebaa92724"
conflicts_with "android-sdk",
:because => "the Android Platform-tools are part of the Android SDK"
def install
bin.install "adb", "fastboot"
end
end