You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Other Firebase Components in use: firestore, auth, analytics
Platform you are using the C++ SDK on: Windows
Platform you are targeting:Android
[REQUIRED] Please describe the issue here:
After I add messaging service to my project app started to crash with this error.
It builds without error but " .... RegistrationIntentService not found" error at runtime.
If I comment out this line it works firebase::messaging::Initialize(*app, &listener);
(Please list the full steps to reproduce the issue. Include device logs, Unity logs, and stack traces if available.)
Steps to reproduce:
setup firestore, auth, analytics and messaging lib,
Have you been able to reproduce this issue with just the Firebase C++ quickstarts ?
What's the issue repro rate? (eg 100%, 1/5 etc)
100%
What happened? How can we make the problem occur? when i start app after building APK in my device its crashing with mentioned error
This could be a description, log/console output, etc.
E/firebase: Java class com/google/firebase/messaging/cpp/RegistrationIntentService not found. Please verify the AAR which contains the com/google/firebase/messaging/cpp/RegistrationIntentService class is included in your app.
E/firebase: clazz
A/firebase: Java class com/google/firebase/messaging/cpp/RegistrationIntentService not found. Please verify the AAR which contains the com/google/firebase/messaging/cpp/RegistrationIntentService class is included in your app.
A/libc: Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 26939 (GLThread 73389), pid 26894 (t.rotatingballs)
If you have a downloadable sample project that reproduces the bug you're reporting, you will
likely receive a faster response on your issue.
Relevant Code:
problematic line is:
firebase::messaging::Initialize(*app, &listener);
// TODO(you): code here to reproduce the problem
The text was updated successfully, but these errors were encountered:
I followed instructions on https://github.com/firebase/firebase-cpp-sdk and its worked now.
I defined required libs here
apply from: "$gradle.firebase_cpp_sdk_dir/Android/firebase_dependencies.gradle"
firebaseCpp.dependencies {
gma
auth
messaging
firestore
analytics
}
[REQUIRED] Please fill in the following fields:
[REQUIRED] Please describe the issue here:
After I add messaging service to my project app started to crash with this error.
It builds without error but " .... RegistrationIntentService not found" error at runtime.
If I comment out this line it works
firebase::messaging::Initialize(*app, &listener);
(Please list the full steps to reproduce the issue. Include device logs, Unity logs, and stack traces if available.)
Steps to reproduce:
setup firestore, auth, analytics and messaging lib,
Have you been able to reproduce this issue with just the Firebase C++ quickstarts ?
What's the issue repro rate? (eg 100%, 1/5 etc)
100%
What happened? How can we make the problem occur? when i start app after building APK in my device its crashing with mentioned error
This could be a description, log/console output, etc.
E/firebase: Java class com/google/firebase/messaging/cpp/RegistrationIntentService not found. Please verify the AAR which contains the com/google/firebase/messaging/cpp/RegistrationIntentService class is included in your app.
E/firebase: clazz
A/firebase: Java class com/google/firebase/messaging/cpp/RegistrationIntentService not found. Please verify the AAR which contains the com/google/firebase/messaging/cpp/RegistrationIntentService class is included in your app.
A/libc: Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 26939 (GLThread 73389), pid 26894 (t.rotatingballs)
If you have a downloadable sample project that reproduces the bug you're reporting, you will
likely receive a faster response on your issue.
Relevant Code:
problematic line is:
firebase::messaging::Initialize(*app, &listener);
The text was updated successfully, but these errors were encountered: