Hi,
my settings disabling to vibrate function, but on each notification my device are still vibrating. It is a bug in your lib or have I a misconfiguration?
"react-native": "^0.58.6"
"react-native-push-notification": "^3.1.3"
test-device: huawai p10 lite
android: 8.0.0
my settings:
`localNotif(message, item) {
PushNotification.localNotification({
/* Android Only Properties */
id: '1',
autoCancel: true,
largeIcon: "ic_launcher",
smallIcon: "ic_notification",
bigText: message,
vibrate: false, // (optional) default: true
vibration: 0, // vibration length in milliseconds, ignored if vibrate=false, default: 1000
itemData: item,
/* iOS only properties */
alertAction: 'view',
category: null,
userInfo: null,
/* iOS and Android properties */
title: Localization('General.Download.DownloadTitle'), // (optional)
message: message, // (required)
playSound: false, // (optional) default: true
soundName: 'default',
number: '10',
// actions: '["Yes", "No"]',
});
}`