mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-12 22:29:41 +08:00
19 lines
338 B
JavaScript
19 lines
338 B
JavaScript
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
*
|
|
* Stub of VibrationIOS for Android.
|
|
*
|
|
* @providesModule VibrationIOS
|
|
*/
|
|
'use strict';
|
|
|
|
var warning = require('warning');
|
|
|
|
var VibrationIOS = {
|
|
vibrate: function() {
|
|
warning('VibrationIOS is not supported on this platform!');
|
|
}
|
|
};
|
|
|
|
module.exports = VibrationIOS;
|