19 lines
457 B
Mathematica
19 lines
457 B
Mathematica
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
|
||
|
#import "RCTAdSupport.h"
|
||
|
|
||
|
@implementation RCTAdSupport
|
||
|
|
||
|
- (void)getAdvertisingId:(RCTResponseSenderBlock)callback withErrorCallback:(RCTResponseSenderBlock)errorCallback
|
||
|
{
|
||
|
RCT_EXPORT();
|
||
|
|
||
|
if ([ASIdentifierManager class]) {
|
||
|
callback(@[[[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString]]);
|
||
|
} else {
|
||
|
return errorCallback(@[@"as_identifier_unavailable"]);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@end
|