Here is a chapter with the name: Enable SKAdNetwork attribution in your application.
But no example provided.
Here is a chapter with the name: Enable SKAdNetwork attribution in your application.
But no example provided.
Hi,
Thanks for reaching out.
Please clarify your app is monetization app or advertising app, you just need to Enable SKAdNetwork attribution in your advertising app.
To enable the SKAdNetwork attribution, In your Objective-C code where appropriate (such as in your AppDelegate), add the necessary imports and implement the calls to the SKAdNetwork API:
#import <StoreKit/StoreKit.h>
// Call this method at an appropriate time to register an app install
- (void)registerAppInstall {
[SKAdNetwork registerAppForAdNetworkAttribution];
}
// Optional: Use this method to update conversion values for post-install events
- (void)updateConversionValue:(NSInteger)value {
[SKAdNetwork updateConversionValue:value];
}
Be sure to check out Apple’s documentation on SKAdNetwork for more detailed information and best practices.
Can you expose it to C#?