-
Notifications
You must be signed in to change notification settings - Fork 285
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
Update and implementation of UMP SDK to 2.2.0/2.4.0 #1062
Conversation
ACK: #1024 |
ACK: #852 |
I definitely do appreciate a more Dart-like approach with these new APIs. Could there also be a |
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.
Can you add a note in the PR description that the iOS GMA version already has the required UMP version?
result(@([UMPConsentInformation.sharedInstance canRequestAds])); | ||
} else if ([call.method | ||
isEqualToString:@"ConsentInformation#" | ||
@"getPrivacyOptionsRequirementStatus"]) { |
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.
Should this be one line?
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.
Format tools changed it to two lines.
@@ -73,6 +92,24 @@ - (void)handleMethodCall:(FlutterMethodCall *_Nonnull)call | |||
details:error.domain]); | |||
} | |||
}]; | |||
} else if ([call.method | |||
isEqualToString:@"UserMessagingPlatform#" |
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.
Same here
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.
Same as above
There is a |
@LTPhantom iOS recently updated their UMP SDK version to |
Acknowledged. Current code in this PR should be compatible with it. |
Description
Updated the UMP SDK version for Android and iOS and surfaced the missing methods on the dart layer. (GMA SDK for iOS already comes with the latest UMP SDK)
Related Issues
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. Updating the
pubspec.yaml
and changelogs is not required.///
).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?