react-native/Libraries/AdSupport/AdSupportIOS.js

19 lines
441 B
JavaScript
Raw Normal View History

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