1

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

package com.retrytech.veginew does not exist
import com.retrytech.veginew.R;

Thank you and I'll be waiting

Robert
  • 39,162
  • 17
  • 99
  • 152
  • Please do not paste error message in screenshots only, just copy and paste the error text into your question. – Robert Feb 04 '22 at 08:52

1 Answers1

0

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;
Sambhav Khandelwal
  • 3,585
  • 2
  • 7
  • 38