-
Notifications
You must be signed in to change notification settings - Fork 4.1k
[firebase_remote_config] Support v2 android embedder. #282
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
9f8bf53
Plugin side of new embedding
bparrishMines 550b2d9
Update example app to used embedding api
bparrishMines 3e73439
I always forget to format
bparrishMines 143b534
channel name constant no null check
bparrishMines d00e5b9
migrate
78c8828
migrate
839defa
Revert "migrate"
46b97e8
add firebase core dependency in example app
e592f6a
Update gradle.properties
1dcd55f
Update MethodCallHandlerImpl.java
4f0c1df
Update EmbeddingV1Activity.java
a27c3cd
Update MainActivity.java
bc2f587
Update MethodCallHandlerImpl.java
593e84f
Update EmbeddingV1Activity.java
ca428a8
Update MainActivity.java
1f1359c
fix gradle
6721ca4
Update MainActivity.java
9ed4745
Update MainActivity.java
ab84f7b
adding e2d tests
7284d68
Merge branch 'fb_remote_config' of github.com:cyanglaz/flutterfire in…
86a66ae
formatting
c91fcc1
merge master
ebda522
merge master
4523a3b
revert local change to firebase core
9a7e371
Update pubspec.yaml
fe66176
merge master
6c0610c
Merge branch 'fb_remote_config' of github.com:cyanglaz/flutterfire in…
a85b301
update firebase core dependency
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
add firebase core dependency in example app
- Loading branch information
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
ditto from other PR
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 might have missed some updates about the V2 embedding. I took a look of other firebase plugin migration PR and figured we don't have to use the
ShimPluginRegistryto manually register thefirebase coreplugin anymore. And instead we need to add the e2e plugin. So I have updated the file the same. Could you please take another look see if it is good to merge? @xsterThere 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 meant rather that https://github.com/FirebaseExtended/flutterfire/blob/master/packages/firebase_core/android/src/main/java/io/flutter/plugins/firebase/core/FirebaseCorePlugin.java has a v2 embedding implementation. Shouldn't it just work if you did
flutterEngine.getPlugins.add(new FirebaseCorePlugin());?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 see thanks! Will update the dependency as well.