add-haptics-android
Installation
SKILL.md
Add Haptics (Android)
Tactile feedback via vibration motor. Android's haptic API is less capable than iOS but still useful.
Install
npx expo install expo-haptics
Use
import * as Haptics from 'expo-haptics';
await Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Medium);
await Haptics.notificationAsync(Haptics.NotificationFeedbackType.Success);
await Haptics.selectionAsync();