Getting started with Android studioearly access previewdownload
Android studio v0.1
For Windows
This download nodes des:
- Android StudioEarly access Preview
- All the android SDK tools to design, test, debug, and profile your app
- The latest Android platform to compile your app
- The latest Android system image to run your app in the emulator
Android studio is a new Android Development Environment Based on intellijidea. Similar to eclipse with theadt plugin, Android Studio provides integrated Android developer toolsfor development and debugging. On top of thecapabilities you have CT from intellij,
Android Studio offers:
- Gradle-based build support.
- Android-specific refactoring and quick fixes.
- Lint tools to catch performance, usability, version compatibility and other problems.
- Proguard and app-signing capabilities.
- Template-based wizards to create common android designs and components.
- A rich layout editor that allows you to drag-and-drop UI components, preview layouts on multiple screen configurations, and much more.
Caution:Android studio is currently availableEarly access Preview. Several featuresare either incomplete or not yet implemented and you may encounter bugs. If you are notcomfortable using an unfinished
Product, you may want to insteaddownload (or continue to use) theadt bundle (eclipse with the ADT plugin ).
Download for other platformsinstalling Android Studio
- DownloadAndroid StudioPackage from above.
- Install Android Studio and the SDK tools:
Windows:
- Launch the downloaded EXE file,
android-studio-bundle-<version>.exe
.
- Follow the Setup Wizard to install Android studio.
Mac OS X:
- Open the downloaded DMG file,
android-studio-bundle-<version>.dmg
.
- Drag and Drop Android studio into the Applications folder.
Linux:
- Unpack the downloaded tar file,
android-studio-bundle-<version>.tgz
, Into an appropriate location for your applications.
- To launch Android studio, navigate to
android-studio/bin/
Directory in a terminal and executestudio.sh
.You may want to addandroid-studio/bin/
To your path environmental variable so that you can start Android studio from any directory.
That's it! You're ready to start developing apps with Android studio.
Note:On Windows and Mac, the individual tools andother SDK packages are saved within the android Studio Application directory. To access the tools directly, use a terminal to navigate into the application and locatethesdk/
Directory.
For example:
Windows:\Users\<user>\AppData\Local\Android\android-studio\sdk\
Mac:/Applications/Android\ Studio.app/sdk/
Starting a project
When you launch Android studio for the first time, you'll see a welcomescreen that offers several ways to get started:
- To start building a new app, clickNew project.
This starts the New Project Wizard, which helps you set up a project using an app template.
- To import an existing Android app project, clickImport Project.
Note:If you previusly developed your android project with Eclipse, you shocould first use the new export feature in the ADT plugin to prepare your project with the new gradle build system. For more information, readmigrating
From eclipse.
For additional help using Android studio, read
Tips and tricks.
As you continue developing apps, you may need to install additional versionsof Android for the emulator and other packages such as theandroid support library. to install more packages,
Usethesdk manager, which you CANOPEN from Android studio by clickingSDK Manager
In the toolbar.