Did you change the name of the Eclipse Project or the name of your java package? Changing just the name of the project won't touch your code. If instead you renamed your package, then you should also update the AndroidManifest.xml to point to the new package: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.newpackage" ....>
Then do a Project --> Clean and everything will sync just fine. Hope it helps, Yuvi On Sun, Aug 29, 2010 at 4:54 PM, Bret Foreman <[email protected]>wrote: > I changed the name of a project with a package of the same name. > However, the Resource Manager is still building R.java in gen/com/ > oldname instead of gen/com/newname. I can't find the setting in > Eclipse that tells the Resource Manager where to store the R.java > file. I also notice that the package name in R.java is still oldname. > So I guess I need to tell Eclipse what the correct package name is for > R.java too. Any ideas? > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected]<android-developers%[email protected]> > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en -- YuviDroid Check out Launch-X <http://android.yuvalsharon.net/launchx.php> (a widget to quickly access your favorite apps and contacts!) http://android.yuvalsharon.net -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

