-
-
Notifications
You must be signed in to change notification settings - Fork 1
Home
marchbold edited this page Sep 18, 2020
·
6 revisions
The IDFA extension gives you simple access to the advertising identifiers on Android and iOS.
- Access the identifier for advertising on iOS;
- Access the advertising Id on Android;
- Request authorisation using the App Tracking Transparency framework on iOS;
- Single API interface - your code works across supported platforms with no modifications
- Sample project code and ASDocs reference
The wiki forms the best source of detailed documentation for the extension along with the asdocs.
Example:
IDFA.service.addEventListener( IDFAEvent.COMPLETE, idfaCompleteHandler );
IDFA.service.requestAuthorisation(
function ( status:String ):void
{
if (status == TrackingAuthorisationStatus.AUTHORISED)
{
IDFA.service.getIDFA();
}
}
);
function idfaCompleteHandler( event:IDFAEvent ):void
{
trace( "identifier: " + event.identifier );
trace( "isLimitAdTrackingEnabled: " + event.isLimitAdTrackingEnabled );
}
Setup the Extension
Usage
Help
External Links