web-dev-qa-db-fra.com

Résolution des problèmes: ERREUR: échec de la résolution: 'androidx.cardview: cardview: 1.0.0'

Je développe une nouvelle application Android en utilisant les bibliothèques androidx , et j'ai besoin d'utiliser cardview dans ma mise en page.
donc j'essaye d'ajouter la bibliothèque cardview à mon projet mais j'obtiens cette erreur ERROR: Failed to resolve: cardview

je vérifie les réponses de Échec: com.Android.support:cardview-v7:26.0.0 Android , mais cela ne m'aide pas
répond comme

  • ajouter google() avant jcenter()
  • ajoutez maven { url "https://maven.google.com" } à repositories

build.gradle (projet)

apply plugin: 'com.Android.application'

Android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.chavosh.porterageapp"
        minSdkVersion 14
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.google.Android.gms:play-services-maps:16.1.0'
    implementation 'androidx.appcompat:appcompat:1.1.0-alpha04'
    testImplementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.google.Android.material:material:1.0.0'
    testImplementation 'junit:junit:4.12'

    // recycler view
    implementation 'androidx.recyclerview:recyclerview:1.1.0-alpha04'

    implementation 'androidx.cardview:cardview:1.0.0'

}

build.gradle (moudle)

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:3.3.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.21"
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        mavenCentral()
        maven { url 'https://jitpack.io' }
        maven { url "https://maven.google.com" }
    }
}

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

gradle.properties a ces deux lignes

Android.useAndroidX=true
Android.enableJetifier=true

error pic

2
hassan moradnezhad

Retirez-les!

Avec seulement ces 3, vous pouvez utiliser à la fois RecyclerView et CardView et un plus: ConstraintLayout

implementation 'androidx.appcompat:appcompat:1.1.0-alpha04'
implementation 'androidx.core:core-ktx:1.1.0-alpha05'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
7
Luca Nicoletti