Minimum packages required to get started, Android SDK

There is a restriction on which I can download Packages.

So, someone can explain which components must be loaded in order to get started with sdk or just make it work fine.

I am looking for minimal components to download.

When I launch the SDK manager, it displays a list showing the various packages. The very first Android 6.0 API contains many other packages inside, So of them you need to install Packages.

The packages that were installed enter image description here

What bothers me is the list of packages: enter image description here

So the question is, What is needed to start?

+5
source share
2 answers

By default, the Android SDK does not include everything you need to start development. The SDK separates tools, platforms, and other components from packages that you can download as needed using the Android SDK Manager. So, before you can get started, there are several packages that you must add to your Android SDK.

At a minimum, when setting up the Android SDK, you must download the latest Android tools and platform:

Open the "Tools" directory and select:

  • Android SDK Tools
  • Platforms for Android SDK
  • Android SDK Build-tools (highest version)

Open the first Android XX folder (latest version) and select:

SDK Platform A system image for the emulator , for example ARM EABI v7a System image

Read the white papers for more. Adding SDKs . I hope this helps you.

+5
source

Here are the packages that you must install to work properly.

Latest Version:

  • Android SDK Tools
  • Platforms for Android SDK
  • Android SDK Constructors

Based on your application, you can use all APIs.

Downloading important things from API packages (XX) - (Android XX).

  • SDK platform
  • if you are testing the application using an emulator, then download the system image , for example, ARM EABI v7a System Image, Intel X86 Atom System Image (there is no need to download the system image for the TV and clothes).

More Detailed Explanation Adding SDKs

+4
source

Source: https://habr.com/ru/post/1240497/


All Articles