Android Installation

This guide shows how to set up your SDK environment to deploy apps for Android devices. You need to install the Android SDK regardless of whether you want to use these platform-centered shell tools or cross-platform Cordova CLI for development. For detail more please read Official document

Install Android Studio

Install Android Studio. Follow the instructions at the linked Android Developer site to get started. Opening Android Studio for the first time will guide you through the process of installing the Android SDK.

Adding SDK Packages

After installing the Android SDK, you must also install the packages for whatever API level you wish to target. It is recommended that you install the highest SDK version that your version of cordova-android supports (see Requirements and Support).

Example, cordova-android@9 support Android API 29. So you need install SDK Platform for API Level 29

Open the Android SDK Manager by click Configure -> SDK Manager

(if you are openning project then it should be Tools > SDK Manager)

and make sure the following are installed:

  1. In tab SDK Platforms install Android Platform SDK for your targeted version of Android

  2. In tab SDK Tools install/update follow:

    • Android SDK Build-Tools version 19.1.0 or higher
    • Android SDK Platform-Tools
    • Android SDK Tools
    • Google Play Services

See Android's documentation on Installing SDK Packages for more details.