Reputation: 6450
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?
Upvotes: 1
Views: 62
Reputation: 3674
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.
Upvotes: 4