mirror of
https://github.com/status-im/react-native-udp.git
synced 2025-01-14 02:54:21 +00:00
18 lines
261 B
JavaScript
18 lines
261 B
JavaScript
/**
|
|
* Stub of UdpSockets for Android.
|
|
*
|
|
* @providesModule UdpSockets
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var warning = require('warning');
|
|
|
|
var UdpSockets = {
|
|
test: function() {
|
|
warning("Not yet implemented for Android.");
|
|
}
|
|
};
|
|
|
|
module.exports = UdpSockets;
|