Не удалось связать ресурсы в Android Studio

#android #android-studio #kotlin #material-components-android

Вопрос:

Я работаю с Android Studio и пытаюсь использовать библиотеку материалов Google

Я получаю следующую ошибку (не удалось связать ресурсы Android):

ОШИБКА:AAPT: C:UsersANDRESDesktopcursillo_androidTipTime2appbuildintermediatesincrementalmergeDebugResourcesmerged.dirvalues-v31values-v31.xml:3: ошибка: ресурс android:цвет/system_neutral1_1000 не найден.

Файлы класса Mi являются:

 plugins {
    id 'com.android.application'
    id 'kotlin-android'
}

android {
    compileSdk 30
    compileSdkVersion 30
    defaultConfig {
        applicationId "com.example.tiptime2"
        minSdk 24
        targetSdk 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }

    buildFeatures {
        viewBinding = true
    }

}

dependencies {

    implementation 'androidx.appcompat:appcompat:1.0.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4. '
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
    implementation 'com.google.android.material:material:1.5.0-alpha05'


}
 
 
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        google()
        mavenCentral()
        jcenter()

    }
    dependencies {
        classpath "com.android.tools.build:gradle:7.0.3"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files

    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}


 

Я хотел бы поделиться с вами картиной ошибки:

enter image description here

Thank you