https://medium.com/@manuaravindpta/when-to-use-service-and-when-to-use-workmanager-9760613ce5c2
너무 자주 진동이 발생하면 사용자 경험에 좋지 않기 때문에, 중요한 알림 강조나 중요한 상호 작용 확인 등의 시나리오에 사용하는 것이 일반적이다.
안드로이드 가이드: https://developer.android.com/develop/ui/views/haptics/haptics-principles
android.permission.VIBRATE 권한 필요, minSdk 26 (일부 기능은 29)
context.getSystemService(Context.VIBRATOR_SERVICE) 를 통해 Vibrator를 가져온다.