Skip to content

Commit 4993713

Browse files
committed
Small wording fix
1 parent f40c2f6 commit 4993713

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/content/docs/ios/ios-show-asa-targeted-paywall.mdx renamed to src/content/docs/ios/ios-show-aa-targeted-paywall.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "Wait for Apple Ads attribution before requesting the paywall on iO
44
metadataTitle: "Show AA-targeted paywall on first launch | iOS SDK | Adapty Docs"
55
---
66

7-
Apple Ads (AA) attribution arrives asynchronously after `Adapty.activate()`. If you call `getPaywall` early, attribution often hasn't landed yet and Adapty resolves the placement against the default audience — bypassing your ASA-segmented paywalls. `AdaptyProfile.appliedAttributionSources` lets the app detect when ASA attribution has been applied to the profile, so the paywall request can wait until ASA segmentation will resolve correctly.
7+
Apple Ads (AA) attribution arrives asynchronously after `Adapty.activate()`. If you call `getPaywall` early, attribution often hasn't landed yet and Adapty resolves the placement against the default audience — bypassing your AA-segmented paywalls. `AdaptyProfile.appliedAttributionSources` lets the app detect when AA attribution has been applied to the profile, so the paywall request can wait until AA segmentation will resolve correctly.
88

99
## Before you start
1010

@@ -14,7 +14,7 @@ You need:
1414

1515
## How it works
1616

17-
After `Adapty.activate()`, the SDK requests Apple Ads attribution from Apple in the background and forwards the result to Adapty's backend. When ASA becomes the active attribution source for the profile, the SDK delivers an updated `AdaptyProfile` whose `appliedAttributionSources` array contains `.appleAds`.
17+
After `Adapty.activate()`, the SDK requests Apple Ads attribution from Apple in the background and forwards the result to Adapty's backend. When AA becomes the active attribution source for the profile, the SDK delivers an updated `AdaptyProfile` whose `appliedAttributionSources` array contains `.appleAds`.
1818

1919
An empty array can mean any of:
2020

@@ -33,7 +33,7 @@ On first launch, watch for `.appleAds` in the profile and apply a hard timeout
3333

3434
1. **Activate the SDK.** See [Install & configure the iOS SDK](sdk-installation-ios).
3535
2. **Subscribe to profile updates** by conforming to `AdaptyDelegate` and implementing `didLoadLatestProfile`. If you haven't set up the delegate yet, see [Listen to subscription updates](ios-check-subscription-status#listen-to-subscription-updates).
36-
3. **Watch for `.appleAds` in `appliedAttributionSources`.** When it appears, request the paywall — Adapty will return the ASA-segmented variant:
36+
3. **Watch for `.appleAds` in `appliedAttributionSources`.** When it appears, request the paywall — Adapty will return the AA-segmented variant:
3737

3838
```swift
3939
extension <YourAdaptyDelegateImpl>: AdaptyDelegate {

src/data/sidebars/ios.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@
216216
},
217217
{
218218
"type": "doc",
219-
"label": "Show an ASA-targeted paywall on first launch",
220-
"id": "ios-show-asa-targeted-paywall"
219+
"label": "Show an AA-targeted paywall on first launch",
220+
"id": "ios-show-aa-targeted-paywall"
221221
}
222222
],
223223
"id": "ios-best-practices"
@@ -286,4 +286,4 @@
286286
],
287287
"id": "ios-sdk-migration-guides"
288288
}
289-
]
289+
]

0 commit comments

Comments
 (0)