-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for GraalVM native image #800
Comments
I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight. |
Is there any update on this? I am struggling with a native image build since adding the |
Is there any update on this? |
Is there any update on this? This is error i am getting: |
Hi everyone, I've been working on GraalVM native image support for Spring Boot applications using Firebase Cloud Messaging (FCM) and wanted to share two projects that could help those facing similar challenges with native image compatibility: Both projects demonstrate how to configure Spring Boot applications with FCM and make them GraalVM native image compatible, including handling reflection and other related issues. These might be helpful as examples or starting points for your own projects. Feel free to explore them and share feedback! |
Hello everyone. @waileong specially hi for you :) java.lang.NullPointerException: Failed to load: admin_sdk.properties I want to note that I am using the tenant manager as I am not using the default tenant in my GCP Project. @component
|
Is your feature request related to a problem? Please describe.
Notifications are not sent when run as a native image.
I was able to use the library after adding reflection configuration for these classes:
Message.class,
Notification.class,
AndroidConfig.class,
AndroidNotification.class,
AndroidFcmOptions.class,
WebpushConfig.class,
WebpushFcmOptions.class,
WebpushNotification.class,
ApnsConfig.class,
ApnsFcmOptions.class,
ApsAlert.class,
FcmOptions.class,
MessagingServiceResponse.class,
MessagingServiceErrorResponse.class
Describe the solution you'd like
Add reflect-config.json file to the project
Describe alternatives you've considered
Document how to achieve native image compatibility
The text was updated successfully, but these errors were encountered: