Erorres with material design and android studio 3.2.1

0

I have the android studio 3.2.1, synchronize the design material with the following version: implementation 'com.android.support:design:28.0.0, when I insert a: I get an error I do not know what to do if there is an answer I would appreciate it

this is the Build.gradle on my pc:

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig{
        applicationId"miscelanea2018.daniel.miscelanea2018"
        minSdkVersion 24
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    } buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt '), ' proguard - rules.pro '
        }
    }
}
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    implementation 'junit:junit:4.12'
    androidTestImplementation'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation'com.android.volley:volley:1.1.1'
    implementation'com.android.support:design:28.0.0'
}

thanks

    
asked by daniel 28.10.2018 в 04:29
source

1 answer

0

Remember to install SDK 28 tools, go to SDK manager in Tools - SDK Manager and install the following

    
answered by 29.10.2018 в 18:36