web-dev-qa-db-ja.com

修正方法:エラー:解決に失敗: 'androidx.cardview:cardview:1.0.0'

私は新しいAndroidアプリケーションを使用してandroidxライブラリを開発していますが、cardview私のレイアウトで。
プロジェクトにcardviewライブラリを追加しようとしましたが、このエラーが発生しました_ERROR: Failed to resolve: cardview_

Failed:com.Android.support:cardview-v7:26.0.0 Android の回答を確認しますが、役に立ちません
回答

  • google()の前にjcenter()を追加します
  • _maven { url "https://maven.google.com" }_をrepositoriesに追加

build.gradle(プロジェクト)

_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にはこの2行があります

_Android.useAndroidX=true
Android.enableJetifier=true
_

error pic

2

それらを削除するだけです!

これら3つだけで、RecyclerViewCardViewの両方とプラスを使用できます: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