I'm using Robotium to do some automated testing on an OEM application and I am having trouble using the resource ID's. From what I understand, to use a resource id, you need to do something like this:
ImageView imageView = (ImageView) solo.getView(R.id.appicon);
My question is: do I have to import the AUT resources folder into my test project in order to use the resource id's when I test?
Thanks!