Android target : not installed

14,146

Solution 1

You can follow this link set ANDROID_HOME which I got help from or follow below guide.

I had similar trouble but managed to fix it. After successful installation of android studio, Android SDK will be downloaded by default to a directory like this "C:\Users\abc\AppData\Local\Android\sdk1" where "abc" in this case is your PC name. AppData is a hidden folder.

Next step is to set ANDROID SDK path. From Advanced System Settings, click Environment Variables then under User variables add New as shown below.

enter image description here

Next, add android 'tools' and 'platform-tools' to System variables' 'Path' as shown below. These tools are inside sdk folder.

enter image description here

Set up is done. Open cmd and issue android command. If all is well, you should see below output. enter image description here

Finally open a new terminal window and navigate to your cordova project directory, in my case "hello" and check platfrom requirements. All should be fine now. enter image description here

Solution 2

I had a similar problem. The issue was I was using the latest version of Java which was 10.0.1

You can check yourself by typing in terminal:

java --version

And it was

java 10.0.1 2018-04-17
Java(TM) SE Runtime Environment 18.3 (build 10.0.1+10)
Java HotSpot(TM) 64-Bit Server VM 18.3 (build 10.0.1+10, mixed mode)

Currently, Cordova needs on their documentation page as JDK 8. SEE DOC HERE

You can download JDK 8 from the official website here

Once you download you need to set up JAVA_HOME variable. Use this for setting up JAVA HOME when you have multiple version of JAVA installed.

Then you can run

cordova requirements 

or

cordova build android

This worked for me. Hope it helps someone.

Share:
14,146
Admin
Author by

Admin

Updated on June 04, 2022

Comments

  • Admin
    Admin almost 2 years

    I am unable to run ionic run android. After I checked with cordova requirements, it shows

    Android target: Not installed
    Android SDK not found.
    

    enter image description here

    How should I solve the problem? I have my SDK in D drive where I have set ANDROID_HOME and path correctly, I suppose enter image description hereenter image description here

    Also, I do android list target, it shown as below. How should I intsall it if it is needed to fix teh error?enter image description here

    Attached the cordova android version

    enter image description here

  • JP Lew
    JP Lew about 6 years
    thanks! I'm on Mac, but your advice to add the tools to PATH solved the problem. I forgot that I modified my PATH in one terminal window, but forgot to source it in the window running the cordova requirements command