Не может разрешить символ FirebaseMessagingService

compile 'com.google.firebase:firebase-message:12.0.1' установлен

с компиляцией 'com.google.firebase:firebase-messaging:10.2.1' - все хорошо

dependencies {

    compile fileTree(include: ['*.jar'], dir: 'libs')

    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })

    compile 'com.android.support:appcompat-v7:26.+'
    compile 'com.android.support:design:26.+'
    compile 'com.android.support:cardview-v7:26.0.0-alpha1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.support:recyclerview-v7:26.0.0-alpha1'
    compile 'com.vk:androidsdk:+'
    compile 'com.google.firebase:firebase-core:10.2.1'
    compile 'com.google.firebase:firebase-messaging:10.2.1'
    compile 'com.google.firebase:firebase-database:10.2.1'
    compile 'com.journeyapps:zxing-android-embedded:3.5.0'
    compile 'com.google.zxing:core:3.2.0'
    compile 'com.google.firebase:firebase-storage:10.2.1'
    compile 'com.google.firebase:firebase-auth:10.2.1'
    compile 'com.google.firebase:firebase-crash:10.2.1'
    compile 'com.github.techery:properratingbar:+'
    compile 'com.github.zagum:Android-SwitchIcon:1.3.5'
    compile 'com.heinrichreimersoftware:material-intro:1.6.2'
    compile 'com.android.support:support-v4:26.+'
    compile 'com.github.amlcurran.showcaseview:library:5.4.3'
    compile 'com.facebook.android:facebook-login:[4,5)'
    compile 'com.google.android.gms:play-services-auth:10.2.1'

    testCompile 'junit:junit:4.12'

}

2 ответа

Я нашел проблему. В моем сервисе существует

@Override
    public void handleIntent(Intent intent) {
    }

В 12 версии этот метод помечен как окончательный. Я удалил handleIntent и все стало хорошо. Но почему это говорит мне, что сервис не виден?..

Убедитесь, что вы также положили зависимость в проект Gradle

dependencies {
        classpath 'com.android.tools.build:gradle:2.2.0-rc1'
        classpath 'com.google.gms:google-services:3.0.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }

и в файле сборки приложения app поставить эти две зависимости

Приложение /build.gradle

dependencies {
    compile 'com.google.firebase:firebase-messaging:9.6.0' //new version 12.0.1
}

apply plugin: 'com.google.gms.google-services'

и Gson файл затем перестроить ваш проект

Другие вопросы по тегам