Could anyone know, how to fix the deprecated warning or any alternate solution for this.
Handler().postDelayed({ context?.let { //code } }, 30
Consider using coroutines
scope.launch { delay(3000L) // do stuff }