Android Question Simple Vibrate Example not Working on Samsung Note 3

igpeters

New Member
Licensed User
Longtime User
Can't get any vibration to occur on Samsung Note 3. Checked the permissions, all seems well.

Would anyone like to just point me at what mistake I've made!

Code
Sub Process_Globals

Dim pv As PhoneVibrate

End Sub

Sub Button1_Click
pv.Vibrate(1000)
End Sub

Manifest
AddPermission("android.permission.VIBRATE")
 

igpeters

New Member
Licensed User
Longtime User
Cheers Erel

Under Settings, Device / Sound / Vibration Intensity

Incoming Call and Haptic Feedback were set but Notification was not!
 
Upvote 0
Top