mkuczera / react-native-haptic-feedback

React-Native Haptic Feedback for iOS with Android similar behaviour.
MIT License
855 stars 103 forks source link

react-native-haptic-feedback not working with latest version #96

Closed Nischal-Ad closed 1 year ago

Nischal-Ad commented 1 year ago

The react-native-haptic-feedback library is not working with the latest version. Despite implementing the code as documented, no haptic feedback is being generated and there are no errors or warnings being displayed when interacting with components.

Nischal-Ad commented 1 year ago

hey developers,

i am just making sure that my haptic feedback is started working after i made some changes in options that is passed in trigger.

const options = { enableVibrateFallback: true, ignoreAndroidSystemSettings: false, }; insead of using this as per docs recommended, const options = { enableVibrateFallback: false, ignoreAndroidSystemSettings: true, }; use this. in my case by passing this options it started working