Skip to content

distriqt/ANE-IDFA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

❤️ Sponsor

IDFA

The IDFA extension gives you simple access to the advertising identifiers on Android and iOS.

Features

  • 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

Documentation

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 );
}