Created
February 11, 2015 00:03
-
-
Save CreatorB/f05c41930a8b5bfa99ad to your computer and use it in GitHub Desktop.
QuickSet Android Developer Tools + Eclipse
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
| /*MANUAL CONFIG*/ | |
| *need java | |
| sudo add-apt-repository ppa:webupd8team/java | |
| sudo apt-get update | |
| sudo apt-get install oracle-java8-installer | |
| //need eclipse | |
| https://eclipse.org | |
| //need sdk | |
| http://developer.android.com/sdk/index.html | |
| *install ADT plugin | |
| - Start Eclipse, then select Help > Install New Software. | |
| - Click Add, in the top-right corner. | |
| - In the Add Repository dialog that appears, enter "ADT Plugin" for the Name and the following URL for the Location: https://dl-ssl.google.com/android/eclipse/ | |
| Note: The Android Developer Tools update site requires a secure connection. Make sure the update site URL you enter starts with HTTPS. | |
| - Click OK. | |
| - In the Available Software dialog, select the checkbox next to Developer Tools and click Next. | |
| - In the next window, you'll see a list of the tools to be downloaded. Click Next. | |
| - Read and accept the license agreements, then click Finish. | |
| - If you get a security warning saying that the authenticity or validity of the software can't be established, click OK. | |
| - When the installation completes, restart Eclipse. | |
| *config sdk path | |
| - Open Eclipse | |
| - go to menu bar Window -> Preferences -> Android -> SDK Location | |
| - change it with your sdk path | |
| /*QUICKSET*/ | |
| //download ADT bundle (Eclipse + SDK archive) | |
| linux 64 bit vm: http://dl.google.com/android/adt/adt-bundle-linux-x86_64-20140702.zip | |
| linux 32 bit vm: http://dl.google.com/android/adt/adt-bundle-linux-x86-20140702.zip | |
| mac: http://dl.google.com/android/adt/adt-bundle-mac-x86_64-20140702.zip | |
| win32: http://dl.google.com/android/adt/adt-bundle-windows-x86-20140702.zip | |
| win64: http://dl.google.com/android/adt/adt-bundle-windows-x86_64-20140702.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment