Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDhruv Patel
8,287 PointsCAN'T FIND R RESOURCE FILE
Everything in my code seemed fine when I left it. The next time I went on, the android:icon value in AndroidManifest.xml said mipmap wasn't a resource so I kept the string blank. Next thing you know Android Studio couldn't find the R resource file and an error popped up into the FunFactsActivity.java file. Can anyone please tell me what to do?
2 Answers
Leandro Rodrigues
3,177 PointsTry clean and rebuild the project.
Build > Clean Project, wait to finish, Build > Rebuild Project.
If doen't work, check if in the FunFactsActivity has some import like this:
import br.com.leandro.meutempo.R;
Dhruv Patel
8,287 PointsThanks i'll try