Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AndroidX package android.support.design.R does not exist

Tags:

When I convert my Project to AndroidX I run into

error: package android.support.design.R does not exist                      android.support.design.R.styleable.FloatingActionButton_Behavior_Layout); 

any clue how to solve it ?

like image 981
hannes ach Avatar asked Dec 04 '18 06:12

hannes ach


1 Answers

I found the solution, simply replace this line

android.support.design.R. 

with

com.google.android.material.R. 
like image 119
hannes ach Avatar answered Sep 21 '22 11:09

hannes ach