Guest User

androidDownload

a guest
Jul 5th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. Android
  2. =======
  3. Created Wednesday 29 April 2015
  4.  
  5. Quick tutorial shows you how to install Android Studio, a new Android development environment developed by Google and based on IntelliJ IDEA, via PPA in Ubuntu 14.10, Ubuntu 14.10, Ubuntu 12.04 and the next Ubuntu 15.04.
  6.  
  7. Similar to Eclipse with the ADT Plugin, Android Studio provides integrated Android developer tools for development and debugging.
  8.  
  9. On top of the capabilities you expect from IntelliJ, Android Studio offers:
  10.  
  11. Gradle-based build support.
  12. Android-specific refactoring and quick fixes.
  13. Lint tools to catch performance, usability, version compatibility and other problems.
  14. ProGuard and app-signing capabilities.
  15. Template-based wizards to create common Android designs and components.
  16. A rich layout editor that allows you to drag-and-drop UI components, preview layouts on multiple screen configurations, and much more.
  17. Built-in support for Google Cloud Platform, making it easy to integrate Google Cloud Messaging and App Engine as server-side components.
  18.  
  19. android-studio
  20. Install Android Studio via PPA in Ubuntu:
  21.  
  22. Installing Android Studio in Ubuntu becomes easy. A Ubuntu PPA contains simple script that automatically downloads and installs the latest release from Google download server. So far, Ubuntu 15.04, Ubuntu 14.10, Ubuntu 14.04, and Ubuntu 12.04 are supported.
  23.  
  24. 1. Android Studio depends on Java, and Oracle Java 7 or 8 is recommended. Press Ctrl+Alt+T on keyboard to open terminal. When it opens, run the commands below one by one:
  25.  
  26. sudo add-apt-repository -y ppa:webupd8team/java
  27.  
  28. sudo apt-get update
  29.  
  30. sudo apt-get install oracle-java7-installer oracle-java7-set-default
  31.  
  32. 2. To add the Android Studio PPA, run the command:
  33.  
  34. sudo add-apt-repository ppa:paolorotolo/android-studio
  35.  
  36. Then update package lists and install the script:
  37.  
  38. sudo apt-get update
  39.  
  40. sudo apt-get install android-studio
  41.  
  42. Depends on your internet connection, it takes a few minutes downloading the source package.
  43.  
  44. Install Android Studio from PPA
  45.  
  46. Once installed, start the setup wizard from the Unity Dash (may need restart), or just run command /opt/android-studio/bin/studio.sh.
Add Comment
Please, Sign In to add comment