These errors are caused by changing the package name in the android manifest file.
They are really easy to fix.
Just double click on the error to open the java source file associated with it.
Scroll all the way up, find the one line of code that has something like "
import com.example.exmaple;
", then click on the plus sign on the left of it.
Scroll down and look through all the lines of import code, there should be one that is commented out with "
//import com.thegamecreators.apk_player.R;
".
Change this line to match the package name in the android manifest file that you have for you're project and un-comment it. "
import com.example.example.R;
" Make sure to leave the ".R;".
once edited just click on the "x" close mark in the file tab, choose to save changes and the error should be fixed.
Also you might want to update to the V108 BETA 7 since its out, it includes the new help files that explain this.
EDIT: Just by a bit
//simpleprogram
Programming and video games, what else could you need?