I am about to release my app to Google Play. My project has multiple packages for organizational purposes. Will this cause a problem? Should I move all my .java files into one package?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can have as many packages as you want in your project, the only one that matters to the android market is the one that you declare in the manifest file
package="com.mypackage.miproyect"because that one will be marked as the application id, so it should be unique.