blob: 5c0acdd065751ac676dc312a84d167190f90a6f3 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | class AndroidPlatformTools < Formula
  homepage "https://developer.android.com/sdk"
  # the url is from:
  # https://dl.google.com/android/repository/repository-8.xml
  url "https://dl.google.com/android/repository/platform-tools_r22-macosx.zip"
  version "22.0.0"
  sha256 "c06721ff66a1a3f70e489325f06474e28cd0efd5352f097ee2ff58167b4f6564"
  conflicts_with "android-sdk",
    :because => "the Android Platform-tools are part of the Android SDK"
  def install
    bin.install "adb", "fastboot"
  end
end
 |