Can the global Android Application
object, which is obtained via getApplication()
, implement an AIDL callback interface and communicate with remote services? Also, can it launch Activities and send intents?
From my understanding, the operations above are typically reserved for Android app components: activities, services, and content providers. Thus I am not sure if an Application
object can perform these as well.