0% found this document useful (0 votes)
50 views14 pages

Install Androids DK

The document provides instructions for installing the Android SDK Manager to develop Android apps. It includes downloading Android Studio from the Android developer website, accepting the terms and conditions, and installing Android Studio by clicking "Next". It also describes installing API and build tools by checking relevant packages in the SDK Manager interface and clicking "OK" to download and install. The document concludes by providing manual installation instructions for Gradle, including finding the required version, downloading the complete distribution ZIP, and extracting the files to the correct default directory.

Uploaded by

Jagadeesh J
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
50 views14 pages

Install Androids DK

The document provides instructions for installing the Android SDK Manager to develop Android apps. It includes downloading Android Studio from the Android developer website, accepting the terms and conditions, and installing Android Studio by clicking "Next". It also describes installing API and build tools by checking relevant packages in the SDK Manager interface and clicking "OK" to download and install. The document concludes by providing manual installation instructions for Gradle, including finding the required version, downloading the complete distribution ZIP, and extracting the files to the correct default directory.

Uploaded by

Jagadeesh J
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 14

Hybrid Android – Installing the Android

SDK Manager

Information in this document is subject to change without notice.

No part of this document may be reproduced or transmitted in any form or by any means,
for any purpose, without the express written permission of TEMENOS HEADQUARTERS SA.

© 2019 Temenos Headquarters SA - all rights reserved.


Hybrid Android- Installing the Android SDK Manager

Table of Contents

1.1 Go to download page.................................................................................................................. 3


1.2 In the next page accept the terms and conditions and download the installer ........................... 4
1.3 Installing Android Studio is straight-forward, just click “Next”..................................................... 5
1.4 Installing API and Build Tools ..................................................................................................... 7
1.5 Manual Installation Guide for Gradle ........................................................................................ 10

2
Hybrid Android- Installing the Android SDK Manager

1.1 Go to download page


https://developer.android.com/studio#downloads

You can download the Android Studio or just the SDK. I recommend installing Android Studio because it
has a graphical SDK Manager and it is easier to work with. Choose the appropriate option for your OS. I
installed on Windows:

3
Hybrid Android- Installing the Android SDK Manager

1.2 In the next page accept the terms and conditions and
download the installer

4
Hybrid Android- Installing the Android SDK Manager

1.3 Installing Android Studio is straight-forward, just click


“Next”

Component “Android Virtual Device” cad be opted out if you do not plan to develop/test Android Apps on
an emulator.

5
Hybrid Android- Installing the Android SDK Manager

6
Hybrid Android- Installing the Android SDK Manager

1.4 Installing API and Build Tools

In order to open up SDK Manager click “Configure” and then choose “SDK Manager”.

7
Hybrid Android- Installing the Android SDK Manager

In “SDK Platforms” tab you have check Android 8.1 (Oreo) (API Level 27)

8
Hybrid Android- Installing the Android SDK Manager

In the “SDK Tools” tab, make sure you check the following:
 Android SDK Build-Tools version 27.0.3 or higher
 Android Support Repository

Click “OK” and the Manager will start to download and install selected packages.

9
Hybrid Android- Installing the Android SDK Manager

1.5 Manual Installation Guide for Gradle


Before you can start the deployment process you need to make sure the right version of gradle is
installed on your system.
The default directory that gradle uses for installation is: C:\Users\{USER_NAME}\.gradle\. For some
reason this path cannot be changed by adding a system variable or changing the system path variable so
the manual installation of any gradle version needs to made to this directory.

If you are using UXP 7.0 then the version of gradle to install 4.4.1. For other versions of UXP please
consult the below chart.

Installing manually
Step 1. Find the required Gradle version for your project as shown in the chart above
All released versions of gradle can be found in the following link: https://gradle.org/releases/.
Download the exact version that is shown in the gradle-wrapper.properties image.

10
Hybrid Android- Installing the Android SDK Manager

The distribution ZIP file comes in two flavours: Binary-only (bin) and Complete (all) with docs and sources
Download the Complete flavour.
Step 2. Unpack the distribution.

Steps for Microsoft Windows users


Go to the default gradle directory and unzip the content to the directory shown in the chart below.
Alternatively you can unpack the Gradle distribution ZIP using an archiver tool of your choice.

11
Hybrid Android- Installing the Android SDK Manager

Make sure you unzip the file in the path exactly as it is shown in the chart and in the screenshot shown
below or it will not work. For example according to the below chart if you need to install gradle 4.4.1 then
unzip the content of the zip file to the following path:
C:\Users\{USER_NAME}\.gradle\wrapper\dists\gradle-4.4.1-all\2kpyt0ea6hyxavvt21uml23gd\gradle-
4.4.1

12
Hybrid Android- Installing the Android SDK Manager

13
Hybrid Android- Installing the Android SDK Manager

The installed gradle version 4.4.1 should look something like the screenshots above.
Make sure you do not forget to add your own user name in path shown above.
Also as you can see in the last screenshot above the downloaded zip file must also be copied in the same
directory as the gradle directory “gradle-4.4.1” that contains the downloaded content.
The last 3 files in the screenshot above are created automatically by gradle during deployment so no
need to add them manually.

These steps will work for installing any version of gradle. You can use this link to search for any gradle
version required: https://gradle.org/releases/

For more information about the gradle install process, see this link:
https://docs.gradle.org/current/userguide/installation.html

14

You might also like