Documentation

​
​

Development

User Acquisition

Monetization

Industry

LevelPlay SDK - Adobe AIR

Unity SDK

Android SDK

iOS SDK

Adobe AIR SDK

Flutter SDK

React Native SDK

LevelPlay SDK - Adobe AIR

Unity LevelPlay
​
​
Adobe AIR SDK
  • Get started
  • Regulations and settings
    • Advanced settings for Adobe AIR
    • iOS privacy settings and configuration
    • SKAdNetwork support
    • Apple privacy questionnaire
    • Impression-level revenue integration
  • Ad formats
  • Mediated networks
  • Test your integration
  1. Grow your game
  2. Unity LevelPlay
  3. LevelPlay SDK
  4. LevelPlay SDK for Adobe AIR developers

iOS privacy settings and configurations for Adobe AIR

Update your Adobe AIR app to support iOS 14 by integrating SDK7, enabling SKAdNetwork attribution, and requesting user tracking authorization.
Read time 2 minutes
Last updated 3 months ago

LevelPlay SDK version 7 is compatible with iOS 14 and supports SKAdNetwork. To update your app, take the following steps:
  1. Integrate SDK7
  2. Update your plist with SKAdNetwork identifiers
  3. Enable SKAdNetwork attribution
  4. Request Tracking Authorization  

Integrate SDK7

LevelPlay SDK 7+ for Adobe AIR includes API changes which allow you to support iOS 14.

Update your plist with SKAdNetwork identifiers

LevelPlay SDK7 includes SKAdNetwork support. Update your app's Info.plist with the network IDs of all of the ad networks you work with to allow ads to appear in your app. Refer to Apple's SKAdNetwork documentation to learn more.
<key>SKAdNetworkItems</key> <array> <dict> <key>SKAdNetworkIdentifier</key> <string>SU67R6K2V3.skadnetwork</string> </dict> </array>

Enable SKAdNetwork attribution in your application

Updating to SDK7 is a great opportunity to update your code to support SKAdNetwork attribution. This will allow your app to send attribution information if you decide to advertise it in other apps.
As Adobe AIR does not allow direct access to Apple API, LevelPlay SDK allows you to register your app using the following API:
IronSource.instance.registerAppForAdNetworkAttribution();
You can read more in Apple's documentation, under the section called ‘The advertised app 's responsibilities are to: '.

Request Tracking Authorization

As part of the iOS 14 changes, Apple introduced a new mechanism for privacy and ad tracking. If you want to request for user authorization to access app-related data, make sure to include NSUserTrackingUsageDescription key in your app's plist.info.
<key>NSUserTrackingUsageDescription</key><string>Text to be displayed </string>
To present the authorization request, you can call the following API, which wraps Apple's API requestTrackingAuthorization(completionHandler:): 
IronSource.instance.requestTrackingAuthorizationWithCompletionHandler();
To view device 's authorization status Apple introduced AuthorizationStatus API. You can get the device 's status using ironSource API.
var userStatus:int = IronSource.instance.trackingAuthorizationStatus();

Copyright © 2026 Unity Technologies
LegalPrivacy PolicyCookiesDocumentation Terms of UseDo Not Sell or Share My Personal InformationYour Privacy Choices (Cookie Settings)

"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S and elsewhere (more info here). Other names or brands are trademarks of their respective owners.

Some pages are machine-translated for convenience, and may contain inaccuracies. In the event of conflicting information, the English version is authoritative.

  • On this page
    • Integrate SDK7

    • Update your plist with SKAdNetwork identifiers

    • Enable SKAdNetwork attribution in your application

    • Request Tracking Authorization


Report a problem with this page