cordova-plugin-onetrust-cmp 202407.2.0 → 202407.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # 202407.2.1
2
+ * Fixed Android build issue with gcm.
3
+
1
4
  # 202407.2.0
2
5
  * Adds support for OneTrust 202407.2.0
3
6
  * Updated README.md file details with the Cordova/Ionic onetrust developer portal url. Please refer to the onetrust developer portal for updated details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cordova-plugin-onetrust-cmp",
3
- "version": "202407.2.0",
3
+ "version": "202407.2.1",
4
4
  "description": "OneTrust is the leading Consent Management solution provider. This plugin exposes OneTrust's native CMP functionality to Cordova and Ionic environments.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/plugin.xml CHANGED
@@ -1,5 +1,5 @@
1
1
  <?xml version='1.0' encoding='utf-8'?>
2
- <plugin id="cordova-plugin-onetrust-cmp" version="202407.2.0"
2
+ <plugin id="cordova-plugin-onetrust-cmp" version="202407.2.1"
3
3
  xmlns="http://apache.org/cordova/ns/plugins/1.0"
4
4
  xmlns:android="http://schemas.android.com/apk/res/android">
5
5
  <name>OneTrust</name>
@@ -344,7 +344,7 @@ public class OneTrust extends CordovaPlugin{
344
344
  Runnable runnable = new Runnable() {
345
345
  @Override
346
346
  public void run() {
347
- OTGoogleConsentModeData otGoogleConsentData = ot.getOTGoogleConsentModeData();
347
+ OTGoogleConsentModeData otGoogleConsentModeData = ot.getOTGoogleConsentModeData();
348
348
  if(otGoogleConsentModeData != null){
349
349
  JSONObject googleConsentData = new JSONObject();
350
350
  try {