mirror of
https://github.com/status-im/react-native.git
synced 2025-01-31 19:55:57 +00:00
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);
|
||
|
},
|
||
|
};
|