로딩중입니다
Testing device registration
7/17/2015 2:42:38 PM

Testing device registration


To test Igaworks Services such as AdPOPcorn, LiveOperation, etc on real devices, you have to register your devices as testing devices.

To register testing devices, the following identifier values are required.

  • Android : Google Advertising ID (ADID)
  • iOS : Apple Advertising Identifier (IDFA)


Have a look at following instructions to find above identifier values for testing devices.

You can find the menu to register devices' identifier on Igaworks Partners Admin Page.



Getting Google Advertising ID(ADID)


On Android devices, you can find the Google Advertising ID(in short, ADID) by opening Google Settings application.

   Find this icon to open Google Settings application.


From Google Settings Screen, you can find ADID, which has the following format.

xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx


  • If you change ADID, you will NOT be able to use AdPOPcorn Offerwall correctly.
  • To get ADID, your devices must have Android version above 2.2 and Google Play Service version above 4.0.
  • You have to use exact RAW ADID value as it is without modification when using it.(Do NOT change ADID value).



Getting Apple Advertising Identifier(IDFA)


You can find Apple Advertising Identifier (in short, IDFA) by using AdSupport.framework which has the following format.

XXXXXXXX-0000-0000-0000-XXXXXXXXXXXX


1. Adding AdSupport.framework



2. Import AdSupport.h

#import <AdSupport/AdSupport.h>


3. Getting IDFA value

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 60000
 
if (NSClassFromString(@"ASIdentifierManager"))
{
    NSString * idfa = nil;
    NSUUID *advertiserId = [[ASIdentifierManager sharedManager] advertisingIdentifier];
    if (advertiserId)
    {
        idfa = [advertiserId UUIDString];
	NSLog(@"IDFA ::: %@ : ", idfa);
    }
}
 
#endif     


  • IDFA is available on iOS devices from iOS version above 6.
  • If you change IDFA, you will NOT be able to use AdPOPcorn Offerwall correctly.
  • Igaworks Services such as AdPOPcorn will NOT work correctly on iOS devices without IDFA.
  • You have to use exact RAW IDFA value as it is without modification when using it.(Do NOT change IDFA value).