错误:无法解决:androidx.appcompat:design:1.1.0

时间:2019-09-16 12:17:00

标签: java android android-support-library androidx material-components-android

当我在构建gradle(模块应用)中实施'androidx.appcompat:design:1.1.0'代码时 它说ERROR: Failed to resolve: androidx.appcompat:design:1.1.0

我尝试更改实现'androidx.appcompat:appcompat:1.1.0' 在appscompact版本中,它再次显示错误

apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    defaultConfig {
        applicationId "com.example.bottomnavigation"
        minSdkVersion 15
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.appcompat:design:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
  

错误:无法解决:androidx.appcompat:design:1.1.0   在项目结构对话框中显示   受影响的模块:应用

3 个答案:

答案 0 :(得分:1)

Design Support Library的{​​{1}}对您来说需要使用

使用此

androidx

代替

implementation 'com.google.android.material:material:1.0.0'

答案 1 :(得分:1)

androidx.appcompat:design 不存在

检查artifact mapping

com.android.support:design  ->  com.google.android.material:material:1.0.0

您可以在材料组件库中找到here the documentation

答案 2 :(得分:0)

为消除错误,

代替此:

tcp.analysis.ack_lost_segment

写下:

implementation 'androidx.appcompat:design:1.1.0'