mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 22:06:43 -06:00
20 lines
745 B
Ruby
20 lines
745 B
Ruby
cask :v1 => 'android-studio' do
|
|
version '1.1.0'
|
|
sha256 '7d31edf46f57c2be12e228fbdb2344c0fb3a4e3fc07b692ec05156c575ef7a61'
|
|
|
|
# google.com is the official download host per the vendor homepage
|
|
url "https://dl.google.com/dl/android/studio/ide-zips/#{version}/android-studio-ide-135.1740770-mac.zip"
|
|
name 'Android Studio'
|
|
homepage 'https://developer.android.com/sdk/'
|
|
license :apache
|
|
|
|
app 'Android Studio.app'
|
|
|
|
caveats <<-EOS.undent
|
|
If you have Java 7 or above installed, you may want to use it as Android Studio JDK, for example:
|
|
|
|
export STUDIO_JDK=/Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk
|
|
|
|
Please take a look at this post: http://tools.android.com/recent/androidstudio1rc3_releasecandidate3released
|
|
EOS
|
|
end
|