У меня ошибка в Gradle, что мне делать? - PullRequest
0 голосов
/ 08 марта 2020

Я хочу добавить cardview в свой проект, и он должен реализовать зависимость (в зависимости от того, что я наблюдал)

я ввел зависимость в build.gradle, который я искал, и синхронизировал ...

Но синхронизированный проект не смог синхронизироваться c, и это ошибка:

build.gradle:29: Gradle DSL method not found: 'imeplementation()'
Possible causes:
The project 'Notifier' may be using a version of the Android Gradle plug-in that does not contain the method (e.g. 'testCompile' was added in 1.1.0).
<a href="fixGradleElements">Upgrade plugin to version 3.5.0 and sync project</a>

The project 'Notifier' may be using a version of Gradle that does not contain the method.
<a href="open.wrapper.file">Open Gradle wrapper file</a>

The build file may be missing a Gradle plugin.
<a href="apply.gradle.plugin">Apply Gradle plugin</a>

это build.gradle в приложении

apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.3"
    defaultConfig {
        applicationId "com.example.notifier"
        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.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'
    imeplementation 'androidx.cardview:cardview:1.0.0'
}

1 Ответ

3 голосов
/ 08 марта 2020

Вы просто опечатаны, implementation не imeplementation.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...