Skip to content

Commit f4ee635

Browse files
authored
Merge pull request #62 from SourcePointUSA/prepare-2.3.4
Prepare Release 2.3.4
2 parents 94fc87e + 4c0d88f commit f4ee635

File tree

8 files changed

+11
-4
lines changed

8 files changed

+11
-4
lines changed

Assets/ConsentManagementProvider/Scripts/json/JsonUnwrapper.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ public static SpGdprConsent UnwrapSpGdprConsentAndroid(SpGdprConsentWrapperAndro
114114

115115
GdprConsent unwrapped = new GdprConsent
116116
{
117+
applies = wrappedGdpr.applies,
117118
uuid = wrappedGdpr.uuid,
118119
euconsent = wrappedGdpr.euconsent,
119120
TCData = wrappedGdpr.tcData,

Assets/ConsentManagementProvider/Scripts/json/wrappers/android/SpGdprConsentWrapperAndroid.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ namespace ConsentManagementProviderLib.Json
55
{
66
internal class SpGdprConsentWrapperAndroid
77
{
8+
[JsonProperty("apply")]
9+
public bool applies;
810
public string uuid;
911
public string euconsent;
1012
public Dictionary<string, object> tcData;

Assets/ExternalDependencyManager/Editor/SourcepointDependencies.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@
3939

4040
<androidPackages>
4141
<!-- <androidPackage spec="org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.3.0" />-->
42-
<androidPackage spec="com.sourcepoint.cmplibrary:cmplibrary:7.8.3" />
42+
<androidPackage spec="com.sourcepoint.cmplibrary:cmplibrary:7.8.4" />
4343
</androidPackages>
4444
</dependencies>

Assets/Plugins/Android/mainTemplate.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ apply plugin: 'com.android.library'
1616
dependencies {
1717
implementation fileTree(dir: 'libs', include: ['*.jar'])
1818
// Android Resolver Dependencies Start
19-
implementation 'com.sourcepoint.cmplibrary:cmplibrary:7.8.3' // Assets/ExternalDependencyManager/Editor/SourcepointDependencies.xml:42
19+
implementation 'com.sourcepoint.cmplibrary:cmplibrary:7.8.4' // Assets/ExternalDependencyManager/Editor/SourcepointDependencies.xml:42
2020
// Android Resolver Dependencies End
2121
**DEPS**}
2222

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 2.3.4
2+
* 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:
3+
* [DIA-4112](https://sourcepoint.atlassian.net/browse/DIA-4112) Fixed: Links to vendors' privacy policy pages now working on Android devices
4+
15
# 2.3.3
26
* 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:
37
* [DIA-4087](https://sourcepoint.atlassian.net/browse/DIA-4087) Fixed: Empty consent when GDPR/CCPA applies is false

ProjectSettings/AndroidResolverDependencies.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<dependencies>
22
<packages>
3-
<package>com.sourcepoint.cmplibrary:cmplibrary:7.8.3</package>
3+
<package>com.sourcepoint.cmplibrary:cmplibrary:7.8.4</package>
44
</packages>
55
<files />
66
<settings>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.sourcepoint.unitycmp",
33
"displayName": "Sourcepoint Consent Message Plugin",
4-
"version": "2.3.3",
4+
"version": "2.3.4",
55
"unity": "2021.3",
66
"description": "Native UI Privacy Manager for both GDPR and CCPA legislations.",
77
"author": {
-446 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)