I've downloaded a couple of example Android projects to learn ORMLite. I constantly get this error saying R cannot be resolved to a variable
. So I just do a CTRL+Shift+O to automatically import all dependencies. This then inserts import android.R;
which unfortunately doesn't solve the problem.
Since the package name is com.test;
I tried to do import com.test.R;
but that doesn't work either.
Does anybody know how I can solve this?