I'm just entering my first Android app and just wondering what is the agreement here?
Is it more organized to split my code into different packages? For instance.
com.myfirstapp.activity;
com.myfirstapp.database;
I thought of this as a way of organizing my code using auxiliary database files, for example, it contained its .database package.
I just noticed that the data is stored in / data / data / YOUR_PACKAGE / does this mean that when I receive data stored on the device everywhere, if I use different packages?
If this is not the best way to organize code in Eclipse the same way as in Xcode?
source
share