Migrate from Kotlin Syntetic to Kotlin ViewBinding in Android Studio [duplicate]
How do I implement viewbinding on a kotlin class?, I'm having trouble implementing this in this code:
package com.example.audio.manager.view
import android.content.Context
import com.example.audio.manager.model.MyAudio
import com.example.audio.manager.R
import kotlinx.android.synthetic.main.view_myaudio.view.* line to remove
@Suppress("DEPRECATION")
class MyAudioView : LinearLayout, View.OnClickListener, SeekBar.OnSeekBarChangeListener, MyAudioManagerListener {
private fun init() {...