15 lines
305 B
JavaScript
15 lines
305 B
JavaScript
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
*
|
|
* @providesModule AdSupportIOS
|
|
*/
|
|
'use strict';
|
|
|
|
var AdSupport = require('NativeModules').RCTAdSupport;
|
|
|
|
module.exports = {
|
|
getAdvertisingId: function(onSuccess, onFailure) {
|
|
AdSupport.getAdvertisingId(onSuccess, onFailure);
|
|
},
|
|
};
|