-
Notifications
You must be signed in to change notification settings - Fork 3
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
DIA-4059 refactor android interface #61
DIA-4059 refactor android interface #61
Conversation
concreteInstance = Application.platform switch | ||
{ | ||
RuntimePlatform.Android => new ConsentWrapperAndroid(), | ||
RuntimePlatform.IPhonePlayer => new ConsentWrapperAndroid(), |
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.
RuntimePlatform.IPhonePlayer => new ConsentWrapperAndroid()
@Nevazhnovu is this line correct?
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.
@andresilveirah you are right, that's a typo. My bad!
public string webConsentPayload; | ||
public ConsentStatusWrapper consentStatus; | ||
#nullable enable | ||
public GCMDataWrapper? gcmStatus; | ||
#nullable disable | ||
} |
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.
@Nevazhnovu were applies
an gcmStatus
removed on purpose?
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.
@andresilveirah Yup, that's done purposefully. The applies
and gcmStatus
have moved to SpGdprConsentWrapper<platform>.cs
classes
…actor-android-interface * DIA-4057-refactor-cmp-class-abstract: Update `CHANGELOG.md` Update `unitypackage` Update `package.json` Update native Android SDK to `7.8.4` Fix unwrapping `applies` for Android # Conflicts: # Assets/ConsentManagementProvider/Scripts/json/JsonUnwrapper.cs # Assets/ConsentManagementProvider/Scripts/json/wrappers/android/SpGdprConsentWrapperAndroid.cs
No description provided.