Can't resolve android.support.design. after migration to AndroidX

dudi picture dudi · Oct 18, 2018 · Viewed 15.7k times · Source

I am trying to get the TextView of the Snackbar with this code snippet:

snackbarView.findViewById<TextView>(android.support.design.R.id.snackbar_text)  

but Android Studio does not resolve the design library.

How can I get this code to work?

Answer

dudi picture dudi · Oct 18, 2018

Solved with this solution: snackbarView.findViewById<TextView>(com.google.android.material.R.id.snackbar_text)