No installed build tools found. Install the Android build tools version 19.1.0 or higher.

这是我在混合开发,使用cordova的时候遇到的,当我导入cordova项目的时候报了一个这样的问题:No installed build tools found. Install the Android build tools version 19.1.0 or higher.

我查了好多资料,很多都说修改sdk目录下build-tools下的版本,如把android-22改成22。但是我发现我的都是22.0.2这样的形式。

后来解决的方法:
将CordovaLib下面的cordova.gradle

No installed build tools found. Install the Android build tools version 19.1.0 or higher._第1张图片

将 System.getenv(“ANDROID_HOME”) 改为你的SDK目录。

第二步将你的CordovaLib下面的build.gradle中的 buildToolsVersion 改为你自己又得版本。

谢谢大家!

你可能感兴趣的:(安卓开发)