cm-sdk-react-native-v3 3.2.0 → 3.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/README.md +1 -1
- package/android/build.gradle +1 -1
- package/ios/CmSdkReactNativeV3.mm +5 -0
- package/ios/CmSdkReactNativeV3.swift +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/android/build.gradle
CHANGED
|
@@ -96,5 +96,5 @@ dependencies {
|
|
|
96
96
|
//noinspection GradleDynamicVersion
|
|
97
97
|
implementation "com.facebook.react:react-native:+"
|
|
98
98
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
99
|
-
implementation "net.consentmanager.sdkv3:cmsdkv3:3.2.
|
|
99
|
+
implementation "net.consentmanager.sdkv3:cmsdkv3:3.2.1"
|
|
100
100
|
}
|
|
@@ -117,4 +117,9 @@ RCT_EXTERN_METHOD(resetConsentManagementData:(RCTPromiseResolveBlock)resolve
|
|
|
117
117
|
RCT_EXTERN_METHOD(getATTAuthorizationStatus:(RCTPromiseResolveBlock)resolve
|
|
118
118
|
withRejecter:(RCTPromiseRejectBlock)reject)
|
|
119
119
|
|
|
120
|
+
+ (BOOL)requiresMainQueueSetup
|
|
121
|
+
{
|
|
122
|
+
return YES;
|
|
123
|
+
}
|
|
124
|
+
|
|
120
125
|
@end
|