Androidx problem with 'com.android.support:design:28.0.0

Viewed 195

How can I make the last line to work with androidx` implementation 'androidx.appcompat:appcompat:1.2.0'

implementation 'com.google.android.material:material:1.3.0'
implementation 'com.android.support:design:28.0.0'`
1 Answers

Remove the support libraries:

//implementation 'com.android.support:design:28.0.0'`

and use:

implementation 'com.google.android.material:material:1.3.0'
Related