views:

133

answers:

1

I have one Application class to keep the global state of my application. But I'm unable to register it in Manifest file? Any idea how to do this?

+3  A: 

If it derives from Application, add the fully qualified (namespace + class name) as the android:name parameter of the application element in your manifest.

<application
        android:name="com.you.yourapp.ApplicationEx"
Rich
Thanks, Solved.
Sharj