When I create application in Eclipse, I use default designer, and get application in namespace:
com.example.MyName
Now I try to upload app to Google Play, but getting error “Package Name “com.example” unacceptable. Please try another.”
If I change name to com.MyName, I get a lot of error, like:
R cannot be resolved to a variable
What can I do?
You will need to change the package in at least 2, maybe more places depending on how complex your app is:
packageattribute of the<manifest>element in yourAndroidManifest.xml.srcfolder by right clicking on the old package, Going toRefactor->Renameand typing in the same name you used in #1.