James Fazio
James Fazio

Reputation: 6450

Android Releasing to Google Play Multiple Packages

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

Answers (1)

geekkoz
geekkoz

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

Related Questions