I'm starting with the creation of android applications, I had previously entered a course where we made applications for android, try to open one of the exercises to practice more but when I opened it I found errors of Gradle
, this compilations and its versions.
How can I update the compilations?
I have several compiles and they make mistakes, and although I give it in install repository and sync project
it does not do anything and the problem persists
and this is the build version I have and the targetSDKVersion
android {
compileSdkVersion 25
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "mx.com.dtss.carritocompras"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}