How to access a start of Application (not Activity)
问题 I need to implement very specific code in the start of the application. I mean, not in the start of the activity(onCreate() or onStart()) but in the start of the application. I had one solution which is not good for me, which is to have a base activity called "MyBaseActivity" and then extends from it in all of my activities. This solution is not good for me, because this solution makes me to be able to do only one specific thing in the onCreate of each activity(the specific code I talked