Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cordova App - build tool error - Gradle

I have a cordova application. Unable to compile it after a system re-install.

I am having the error - Error:No installed build tools found. Please install the Android build tools version 19.1.0 or higher.

My profile has

export ANDROID_HOME="/home/iamkhush/Android/Sdk/tools"
export ANDROID_PLATFORM_TOOLS="/home/iamkhush/Android/Sdk/platform-tools"
export ANDROID_STUDIO='/home/iamkhush/Downloads/work/android-studio/bin/'

I have dirs with names 19.1.0 and 23.0.1 in home/iamkhush/Android/Sdk/build-tools

I have gradle 2.7 installed.

enter image description here

What else should I be looking into to resolve this? I believe I have seen all the posts similar to this, but couldnt get it working.

like image 209
iamkhush Avatar asked Jan 31 '16 10:01

iamkhush


2 Answers

Please, run the following commands.

On Windows:

cd c:\Android\android-sdk\tools\bin

Remember to replace tools path according to yours.

and then:

sdkmanager "build-tools;26.0.0"
like image 119
Thales Valentim Avatar answered Oct 27 '22 13:10

Thales Valentim


You have set ANDROID_HOME incorrect in your ~/.profile. Point it just to the SDK folder.

export ANDROID_HOME="/home/iamkhush/Android/Sdk"

Also, make sure that JAVA_HOME, PATH are set correct, and /home/iamkhush/Android/Sdk have Android SDK build-tools version 19.1.0 or higher.

like image 43
Let'sRefactor Avatar answered Oct 27 '22 12:10

Let'sRefactor