mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-06 17:27:54 +08:00
19 lines
444 B
JavaScript
19 lines
444 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);
|
|
},
|
|
|
|
getAdvertisingTrackingEnabled: function(onSuccess, onFailure) {
|
|
AdSupport.getAdvertisingTrackingEnabled(onSuccess, onFailure);
|
|
},
|
|
};
|