-
Notifications
You must be signed in to change notification settings - Fork 173
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
Feat android messaging #763
Conversation
# Conflicts: # .github/workflows/tests.yml
@@ -318,79 +348,13 @@ public function getFiles(): array | |||
], | |||
[ | |||
'scope' => 'copy', | |||
'destination' => '/example/.gitignore', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are we removing these example files?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just for the Java specific example, they are only used for dev testing while adding new features, and I never use the Java one
templates/android/build.gradle.twig
Outdated
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | ||
classpath 'io.github.gradle-nexus:publish-plugin:1.1.0' | ||
classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' | ||
classpath 'com.google.gms:google-services:4.4.0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not comfortable with adding this by default, isn't there a way to avoid this and allow user to add it in their app build.gradle file instead of adding in the SDK? Doing this will complicate Flutter as we will have to add and maintain Firebase library for all Flutter platforms
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep removed this, it's redundant as users have to add it to their gradle build anyway. We will still need to add the Firebase BOM + messaging library as a dependency to the SDK though
What does this PR do?
Add Android push notification handling
Test Plan
(Write your test plan here. If you changed any code, please provide us with clear instructions on how you verified your changes work.)
Related PRs and Issues
(If this PR is related to any other PR or resolves any issue or related to any issue link all related PR and issues here.)
Have you read the Contributing Guidelines on issues?
(Write your answer here.)