File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
src/connections/sources/catalog/libraries/mobile/ios Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -791,6 +791,18 @@ configuration.adSupportBlock = ^{
791
791
{% endcodeexampletab %}
792
792
{% endcodeexample %}
793
793
794
+ > warning ""
795
+ > In some cases, builds may fail with the following error if you are using XCode version 12 or higher:
796
+ > `Incompatible block pointer types assigning to 'SEGAdSupportBlock _Nullable' (aka 'NSString * _Nonnull (^)(void)') from 'NSUUID * _Nonnull (^)(void)'`
797
+ >
798
+ > If you see this error, change the following on **line 39** of the `SEGAnalyticsConfiguration.h` class:
799
+ >
800
+ > From this:
801
+ > `typedef NSString *_Nonnull (^SEGAdSupportBlock)(void);`
802
+ >
803
+ > To this:
804
+ > `typedef NSUUID *_Nonnull (^SEGAdSupportBlock)(void);`
805
+ >
794
806
795
807
The same value for IDFA will used across all (device and cloud-mode) integrations.
796
808
You can’t perform that action at this time.
0 commit comments