I have the newest, node, npm, android studio, cordova.
I created a new project using
cordova create test cd test cordova platform add android
I enter Android Studio, import the project, go to test / platform / android, it finds the build.gradle file, works on it for a while, and then spits it out:
Gradle version 1.10 is required. Current version is 2.2.1
So, I go to the build.gradle file and update the line
dependencies { classpath 'com.android.tools.build:gradle:0.10.+' }
in
dependencies { classpath 'com.android.tools.build:gradle:0.14.+' }
And then I re-import my project, it clicks on it several times, and then spits it out:
Error:failed to find Build Tools revision 19.0.0
So I install Build Tools 19.0.0
And he tells me:
Error:The SDK Build Tools revision (19.0.0) is too low for project 'android'. Minimum required is 19.1.0
So, I look at my SDK manager, and I have installed 19.1.0
So, I return to my build.gradle file:
and I change:
buildToolsVersion "19.0.0"
to
buildToolsVersion "19.1.0"
And re-import again,
And still telling me: Error. The Build Tools SDK version (19.0.0) is too small for the CordovaLib project. The minimum value is 19.1.0
I am even trying to remove the SDK version 19 tool construct and save 19.1, but it still tells me that.
Can anyone who made this song and dance help me?