Плагин Android-apt несовместим с плагином Android Gradle - PullRequest
0 голосов
/ 26 сентября 2019

Плагин Android-apt несовместим с плагином Android Gradle

Плагин Android-apt несовместим с плагином Android Gradle.Пожалуйста, используйте вместо этого конфигурацию annotationProcessor.Затронутые модули: приложение

что мне не хватает!это мое приложение Gradle Модули


    apply plugin: 'com.android.application'
    apply plugin: 'realm-android'
    android {
        compileSdkVersion 28
        buildToolsVersion '28.0.0'
        defaultConfig {
            applicationId "com.app.app"
            minSdkVersion 14
            targetSdkVersion 28
            versionCode 1
            versionName "1.0.0"
            multiDexEnabled true
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
        repositories {
            maven { url "https://jitpack.io" }
        }
    }

    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'com.android.support:appcompat-v7:28.0.0'
        implementation 'com.android.support:cardview-v7:28.0.0'
        implementation 'com.android.support:recyclerview-v7:28.0.0'
        implementation 'com.android.support:design:28.0.0'
        implementation 'com.google.firebase:firebase-messaging:20.0.0'
        implementation 'com.loopj.android:android-async-http:1.4.9'
        implementation 'com.github.satyan:sugar:1.4'
        annotationProcessor 'com.android.support:multidex:1.0.3'
         compile('com.squareup.retrofit2:retrofit:2.0.0-beta4') {
            exclude module: 'okhttp'
        }
        implementation 'com.squareup.okhttp3:okhttp:4.1.0'
        implementation 'com.squareup.okhttp3:logging-interceptor:3.0.1'
        implementation 'com.squareup.retrofit2:converter-gson:2.6.1'
        implementation 'com.squareup.picasso:picasso:2.5.2'
        implementation 'com.github.bumptech.glide:glide:4.8.0'
         implementation 'com.balysv:material-ripple:1.0.2'
        implementation 'com.pierfrancescosoffritti.androidyoutubeplayer:core:9.0.1'
        testImplementation 'junit:junit:4.12'

    } 

1 Ответ

0 голосов
/ 26 сентября 2019

Добавить строку ниже в блоке зависимостей:

     annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...