mirror of
https://github.com/status-im/react-native.git
synced 2025-01-15 03:56:03 +00:00
16 lines
251 B
Mathematica
16 lines
251 B
Mathematica
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
|
||
|
#import "RCTVibration.h"
|
||
|
|
||
|
#import <AudioToolbox/AudioToolbox.h>
|
||
|
|
||
|
@implementation RCTVibration
|
||
|
|
||
|
- (void)vibrate
|
||
|
{
|
||
|
RCT_EXPORT();
|
||
|
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
|
||
|
}
|
||
|
|
||
|
@end
|