Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .vale.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ Vocab = Docs

[*.md]
BasedOnStyles = write-good, segment
TokenIgnores = ({% .* %})
12 changes: 12 additions & 0 deletions src/connections/sources/catalog/libraries/mobile/ios/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,18 @@ configuration.adSupportBlock = ^{
{% endcodeexampletab %}
{% endcodeexample %}

> warning ""
> In some cases, builds may fail with the following error if you are using XCode version 12 or higher:
> `Incompatible block pointer types assigning to 'SEGAdSupportBlock _Nullable' (aka 'NSString * _Nonnull (^)(void)') from 'NSUUID * _Nonnull (^)(void)'`
>
> If you see this error, change the following on **line 39** of the `SEGAnalyticsConfiguration.h` class:
>
> From this:
> `typedef NSString *_Nonnull (^SEGAdSupportBlock)(void);`
>
> To this:
> `typedef NSUUID *_Nonnull (^SEGAdSupportBlock)(void);`
>

The same value for IDFA will used across all (device and cloud-mode) integrations.

Expand Down