built by distriqt //
This extension is provided for free. If it helps you please consider sponsoring the developers to continue support and development of the extension:
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 documentation site 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 );
}