There is always some information that is needed in many places in your app. It can be a session token, the result of an expensive computation, etc. It is often tempting to avoid the overhead of passing objects between activities or keeping those in persistent storage.
A pattern that is sometimes suggested is to dump your data in the Application object with the idea that it will be available across all activities.