Home > database >  Someone help me with this error in android studio?
Someone help me with this error in android studio?

Time:02-04

Can anyone help me with this problem, I click on start debug to open the app on the phone and these errors appear...

Follow the photo below enter image description here

Thank you and I'll be waiting

CodePudding user response:

That error is occurring because you are trying to import the R class from the wrong package. To solve it you need to remove that import and add this instead :

import com.frankpetapp.R;
  •  Tags:  
  • Related