Skip to content

Commit

Permalink
Merge pull request #62 from SourcePointUSA/prepare-2.3.4
Browse files Browse the repository at this point in the history
Prepare Release 2.3.4
  • Loading branch information
Nevazhnovu authored Jun 26, 2024
2 parents 94fc87e + 4c0d88f commit f4ee635
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ public static SpGdprConsent UnwrapSpGdprConsentAndroid(SpGdprConsentWrapperAndro

GdprConsent unwrapped = new GdprConsent
{
applies = wrappedGdpr.applies,
uuid = wrappedGdpr.uuid,
euconsent = wrappedGdpr.euconsent,
TCData = wrappedGdpr.tcData,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ namespace ConsentManagementProviderLib.Json
{
internal class SpGdprConsentWrapperAndroid
{
[JsonProperty("apply")]
public bool applies;
public string uuid;
public string euconsent;
public Dictionary<string, object> tcData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@

<androidPackages>
<!-- <androidPackage spec="org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.3.0" />-->
<androidPackage spec="com.sourcepoint.cmplibrary:cmplibrary:7.8.3" />
<androidPackage spec="com.sourcepoint.cmplibrary:cmplibrary:7.8.4" />
</androidPackages>
</dependencies>
2 changes: 1 addition & 1 deletion Assets/Plugins/Android/mainTemplate.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: 'com.android.library'
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
// Android Resolver Dependencies Start
implementation 'com.sourcepoint.cmplibrary:cmplibrary:7.8.3' // Assets/ExternalDependencyManager/Editor/SourcepointDependencies.xml:42
implementation 'com.sourcepoint.cmplibrary:cmplibrary:7.8.4' // Assets/ExternalDependencyManager/Editor/SourcepointDependencies.xml:42
// Android Resolver Dependencies End
**DEPS**}

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.3.4
* Unity SDK brought up to v7.8.4 of Native Android SDK [#62](https://github.com/SourcePointUSA/unity-sdk/pull/62) which fixes the following:
* [DIA-4112](https://sourcepoint.atlassian.net/browse/DIA-4112) Fixed: Links to vendors' privacy policy pages now working on Android devices

# 2.3.3
* Unity SDK brought up to v7.8.3 of Native Android SDK [#58](https://github.com/SourcePointUSA/unity-sdk/pull/58) which fixes the following:
* [DIA-4087](https://sourcepoint.atlassian.net/browse/DIA-4087) Fixed: Empty consent when GDPR/CCPA applies is false
Expand Down
2 changes: 1 addition & 1 deletion ProjectSettings/AndroidResolverDependencies.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<dependencies>
<packages>
<package>com.sourcepoint.cmplibrary:cmplibrary:7.8.3</package>
<package>com.sourcepoint.cmplibrary:cmplibrary:7.8.4</package>
</packages>
<files />
<settings>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.sourcepoint.unitycmp",
"displayName": "Sourcepoint Consent Message Plugin",
"version": "2.3.3",
"version": "2.3.4",
"unity": "2021.3",
"description": "Native UI Privacy Manager for both GDPR and CCPA legislations.",
"author": {
Expand Down
Binary file modified unitypackage/ConsentManagementProvider.unitypackage
Binary file not shown.

0 comments on commit f4ee635

Please sign in to comment.