I\'m deriving a custom application from android.app.Application and I can\'t get its onCreate event being fired. Here\'s the implementation
import android.ap
Very simple
In your AndroidManifest.xml, within the application tag enter the name of your Application sub-class with it's path under the android:name attribute.
AndroidManifest.xml
application
Application
android:name
Example:
...