Created
January 12, 2022 03:35
-
-
Save luisfergromo/58a148b751c0e883b164caedccf697ec to your computer and use it in GitHub Desktop.
Install Android Studio & Arduino
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cd .\Downloads\ | |
| # curl https://dl.google.com/android/repository/android_m2repositoey_r47.zip | |
| curl https://redirector.gvt1.com/edgedl/android/studio/install/2020.3.1.26/android-studio-2020.3.1.26-windows.exe -o android-studio.exe | |
| curl https://downloads.arduino.cc/arduino-1.8.19-windows.exe -o arduino-ide.exe | |
| # TODO: EXPORT Android-sdk & Android_HOME | |
| .\android-studio.exe | |
| cd /d "%ANDROID_SDK_ROOT%/tools/bin" | |
| sdkmanager --licenses | |
| # TODO: Accept all policy | |
| .\arduino-ide.exe | |
| # cd into where toold/android can be found |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment