Download Android Studio 3.0 For Mac



The purpose of this section is to guide you to install in your development environment all the dependencies for Android development.

  1. Android Studio 4.0 Download
  2. Android Studio 3.5 Download
  3. Android Studio 3.0.1 Download

The fastest way is to download and install Android Studio.

Latest current version for Android Studio is available at: https://developer.android.com/studio/index.html

Select the Installer Icon:

To install Android Studio on your Mac, proceed as follows:

  1. Launch the Android Studio DMG file.
  2. Drag and drop Android Studio into the Applications folder, then launch Android Studio.
  3. Select whether you want to import previous Android Studio settings, then click OK.
  4. The Android Studio Setup Wizard guides you though the rest of the setup, which includes downloading Android SDK components that are required for development.

I've downloaded Android Studio 3.0.1 for Mac and as I started it, it showed the splash screen for loading but did nothing else relevant (in the case, means showing the menu for starting/opening/importing projects). After some research, I found that I could bypass this screen if I change the idea.properties and put on the following line. Upgrade from 3.0 version. Since v2.3.0, Android and Android Instant use the same build template, please note: If the code is used solely by the Android platform, please put it in the app/src directory, and the third-party library used by itself, please put it in theapp/libs directory.


Click the Next button.

Select a Standard installation and click Next.

Studio

On the Verify Settings window, click Finish.

Once installed, you get the Welcome to Android Studio window :

Click on the Configure Button and select SDK Manager:

In the left pane select Android SDK. On the right pane, select the SDK Platforms Tab and select the SDKs for API level 22 up to 24.

Click the OK button to download and install these Android SDKs.

Android Studio 4.0 Download

Studio

After accepting the licence you should see the following screen:

Wait until all components are installed.

Setup the ANDROID_HOME system variable

Download

Open the SDK Manager and make a copy of the Android SDK Location :

Open the Terminal app and type the following command:

To check the ANDROID_HOME is correctly setup type the following commands:

You should see the following result:

Download Android Studio 3.0 For Mac

Persist the ANDROID_HOME system variable for the current user

The ANDROID_HOME system variable must be persisted when you leave and resstart a new Terminal Window.

One way to do this is to create or update a .profile file in the user's home directory. This file should contain all the commands that should be executed before the Terminal Window session starts.

Open the Terminal app and type the following commands:

In the Text Editor, add the following line

You should have a screen similar to the following screenshot:

To save the .profile file, type CTRL + X, then type Y followed by the ENTER key.

Android

Once done, quit the Terminal window, reopen a new one and type the following command to check if the system variable has been persisted:

Android Studio 3.5 Download

You should have a non empty response.

Android Studio 3.0.1 Download

References