Check if vibration duration is > 0 on Android
(cherry picked from commit 47f338fc12
)
This commit is contained in:
parent
ea13ff860d
commit
128208d1d0
1 changed files with 1 additions and 1 deletions
|
@ -419,7 +419,7 @@ public class Godot extends Fragment implements SensorEventListener, IDownloaderC
|
|||
@SuppressLint("MissingPermission")
|
||||
@Keep
|
||||
private void vibrate(int durationMs) {
|
||||
if (requestPermission("VIBRATE")) {
|
||||
if (durationMs > 0 && requestPermission("VIBRATE")) {
|
||||
Vibrator v = (Vibrator)getContext().getSystemService(Context.VIBRATOR_SERVICE);
|
||||
if (v != null) {
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||
|
|
Loading…
Reference in a new issue