mirror of
https://github.com/status-im/react-native.git
synced 2025-01-29 10:45:04 +00:00
19 lines
441 B
JavaScript
19 lines
441 B
JavaScript
/**
|
|
* 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);
|
|
},
|
|
};
|