I am developing an Android project that currently has 4 packages:
com.myapp.app.activities
com.myapp.app.db
com.myapp.app.ws
com.myapp.app.utils
Can I create an additional package that just
com.myapp.app
?
Eclipse does not allow me to create this package. This tells me that a package with that name already exists.
If I start a new project and create a package called "com.testing.app" and then create a new package called "com.testing.app.activities", it works fine.
For Android Developers:
What I want to do is extend the Application class and use it in a separate package. Suppose com.myapp.app cannot be used, what is a good name for this new package?
source
share