shamon shamsudeen
shamon shamsudeen

Reputation: 5858

Cordova import:SDK build tool revision is too low for project in android studio

I am trying to import cordova project into android studio.But i will get the following error while gradle build.

Error:The SDK Build Tools revision (19.0.0) is too low for project ':..:..:..:..:Root5projects:KTDC:platforms:android'. Minimum required is 19.1.0

build.gradle in the project folder

compileSdkVersion 19
buildToolsVersion "19.1.0"

CordovaLib\build.gradle

android {
    compileSdkVersion 19
    buildToolsVersion "19.1.0"

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }

I have referred many question but nothing works for me.

Cordova version is 4.0.0

android studio version 1.2.2

Also installed the SDK build tools 19.1,21.1.2,22.0.1

Upvotes: 0

Views: 381

Answers (2)

shamon shamsudeen
shamon shamsudeen

Reputation: 5858

Finally I found a solution.Actually that is the problem of Cordova version,I have updated my Cordova now everything works fine.

Upvotes: 0

Nurdin
Nurdin

Reputation: 23893

You can't do phonegap/cordova project using Android Studio. Use eclipse instead Android Studio.

Upvotes: 0

Related Questions