-
Notifications
You must be signed in to change notification settings - Fork 4k
[firebase_admob] Support v2 embedding #1365
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
[firebase_admob] Support v2 embedding #1365
Conversation
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.
LGTM % tests
@@ -1,9 +1,4 @@ | |||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |||
package="io.flutter.plugins.firebaseadmob"> | |||
|
|||
<!-- Sample AdMob App ID: ca-app-pub-3940256099942544~3347511713 --> | |||
<meta-data |
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.
Is this intentional?
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.
Yes, I removed this because the user should be adding this to their app AndroidManifest.xml
and not to the plugin code. It didn't cause any problems with compilation or tests when I removed it.
...rebase_admob/android/src/main/java/io/flutter/plugins/firebaseadmob/FirebaseAdMobPlugin.java
Show resolved
Hide resolved
E2EWidgetsFlutterBinding.ensureInitialized(); | ||
|
||
testWidgets('Initialize Firebase Admob', (WidgetTester tester) async { | ||
// expect( |
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.
were you going to add something here?
hi @xster, is this already published in The plugin is not working since I updated my app to support v2 embedding and I am using the final version |
I see that it was only introduced in 0.9.1, but that version is not published. When will it be published? |
@letiagoalves @xster It's now published to the latest version. I believe we were waiting on finalization of the v2 embedding API and I forgot to publish when it was settled. |
Description
flutter/flutter#41866
Checklist
Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes (
[x]
). This will ensure a smooth and quick review process.///
).flutter analyze
) does not report any problems on my PR.Breaking Change
Does your PR require plugin users to manually update their apps to accommodate your change?