forked from Ivasoft/mattermost-mobile
* module dependencies * update fastlane * upgrade types dependencies * update dev deps * update react-native-notifications * update react-native-keychain * update sentry * update detox * Upgrade to RN 69.3 * increase MaxMetaspaceSize gradle opts * feedback review
14 lines
1.1 KiB
Diff
14 lines
1.1 KiB
Diff
diff --git a/node_modules/react-native-haptic-feedback/android/src/main/java/com/mkuczera/VibrateFactory/VibrateFactory.java b/node_modules/react-native-haptic-feedback/android/src/main/java/com/mkuczera/VibrateFactory/VibrateFactory.java
|
|
index 167118f..e7b8fc4 100644
|
|
--- a/node_modules/react-native-haptic-feedback/android/src/main/java/com/mkuczera/VibrateFactory/VibrateFactory.java
|
|
+++ b/node_modules/react-native-haptic-feedback/android/src/main/java/com/mkuczera/VibrateFactory/VibrateFactory.java
|
|
@@ -15,7 +15,7 @@ import com.mkuczera.VibrateWithCreatePredefined;
|
|
public class VibrateFactory {
|
|
static Map<String, Vibrate> vibrateMap = new HashMap<>();
|
|
static {
|
|
- vibrateMap.put("impactLight", new VibrateWithDuration(new long[]{0, 20}));
|
|
+ vibrateMap.put("impactLight", new VibrateWithDuration(new long[]{0, 5}));
|
|
vibrateMap.put("impactMedium", new VibrateWithDuration(new long[]{0, 40}));
|
|
vibrateMap.put("impactHeavy", new VibrateWithDuration(new long[]{0, 60}));
|
|
vibrateMap.put("notificationSuccess", new VibrateWithDuration(new long[]{0, 40 ,60, 20}));
|