After updating lifecycle library to 2.4.0 Android studio marked all Lifecycle events as deprecated.
@OnLifecycleEvent(Lifecycle.Event.ON_CREATE)
fun create() {
tts = TextToSpeech(context, this)
}
@OnLifecycleEvent(Lifecycle.Event.ON_PAUSE)
fun stopTTS() {
tts?.stop()
}
Is there any equivalent replacement such as DefaultLifecycleObserver ?
