[react_native] Stub VibrationIOS on Android

This commit is contained in:
Andy Street 2015-03-17 11:50:53 -07:00
parent 345f161399
commit d5d9d9b9c1

View File

@ -0,0 +1,18 @@
/**
* 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;