-
Notifications
You must be signed in to change notification settings - Fork 170
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
Remove embedding v1 support #1141
Conversation
2d1df95
to
39cb1d3
Compare
@@ -232,10 +201,6 @@ public void onMethodCall(@NonNull MethodCall call, @NonNull Result result) { | |||
case "syncPurchases": | |||
syncPurchases(result); | |||
break; | |||
case "enableAdServicesAttributionTokenCollection": |
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.
Took the chance to cleanup a few warnings I was getting in Android studio.
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.
Looks good! Cross referenced with Flutter's own PR doing the same thing, and seems to be equivalent.
public Activity getActivity() { | ||
return registrar != null ? registrar.activity() : activity; | ||
} |
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.
Nice to clean this up 👍
### Breaking Changes * Remove embedding v1 support (#1141) via Toni Rico (@tonidero) If you're using embedding v1, please check how to migrate in the [official flutter docs](https://docs.flutter.dev/release/breaking-changes/plugin-api-migration#upgrade-steps). ### Bugfixes * Refine StoreKitVersion logging in configure function (#1143) via Will Taylor (@fire-at-will) ### Other Changes * v7-MIGRATION.md typo fix (#1144) via Will Taylor (@fire-at-will)
This will remove embedding v1 support as requested in #1135.