I'm trying to import app into android studio and it marks this error

-1

I am trying to import an application in Android Studio to be able to open the project and continue with its development but it marks the error of the image:

My version of the SDK Tools is at 25.2.3 as can be seen in the following screenshot:

    
asked by sparrowgt 28.11.2016 в 01:59
source

1 answer

0

If you have updated build tools and your sdk, then simply update the gradle version, within the file build.gradle of the project (to the latest version):

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.2'              
    }
}
    
answered by 07.12.2016 в 18:32