For those trying to manually modify it, the assertions associated with the R.java file are true. If you just change it in the manifest, you will get a long sequence of "R cannot be resolved" errors in your java files that reference resources. To fix this, you need to add import for class R to each of these files.
So, if you had the package initially: "com.mycomp.myapp.android" and changed it to "com.mynewcomp.myapp.android", you will need to go into each java class file and add:
import com.mynewcomp.myapp.android.R;
If you run the originally proposed rename command in a project, this will be done for you automatically.
Rich Jun 24 '11 at 17:36 2011-06-24 17:36
source share