Skip to content

Latest commit

 

History

History
executable file
·
45 lines (23 loc) · 2.27 KB

index.md

File metadata and controls

executable file
·
45 lines (23 loc) · 2.27 KB

Import the App to Android Studio

Please note: These instructions are not all inclusive of possible import errors that can occur, however, it does cover an example of needing to accept software licenses to install missing libraries.

Please refer to https://developer.android.com/studio/intro/update.html#download-with-gradle for any issues relating to the gradle sync or needing to update IDE / SDK tools.

  1. With Android Studio open, select "Import Project (Gradle, Eclipse ADT, etc.)":

image

  1. In your home directory, find the Acme directory you created, expand it, expand the android folder, and select the android option with the Android Studio logo next to it. Click "OK":

image

  1. In the new window that opens you can watch the Gradle sync happen at the bottom row of the window. Allow it to download all the required dependencies. This may take several minutes.

  2. Android studio may ask you to update your version of Gradle. This will be a small window notification in the lower right hand corner of the screen. Proceed to upgrade. Gradle is up-to-date, you will see this in your screen:

import2

  1. If there are any license issues from not accepting the terms, you will see this at the bottom of the window:

import3

  1. Go to Tools > SDK Manager and the following screen will pop up where you can select "SDK Tools" and "Android SDK Build-Tools"

import4

  1. Select "Show Package Details" at the bottom of this window. Select the Android SDK Build Tool version that the error message is showing and then click "Apply":

import6

  1. Accept the terms of the license and click "OK" to proceed with the missing package installation.

import5

  1. Click "Finish" when the component installer is done.

  2. Go to File > Close project

  3. Repeat steps 1 and 2, and when the project is imported successfully, you should see:

Screenshot from 2020-03-08 17-58-10

Home