I’m extending Application. In another test, where everything was in the same package, everything went well. Now, I do have multiple packages and the app crashes. I guess, I miss something about the path in the manifest?
<application
android:name=".MyInheritedApplication"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
Any hints appreciated!
Thanx, Marcus
Make sure that your
package-attribute in themanifest-tag is set correctly.Example
Every
applicationhas his ownname-attribute that will use thispackageto build up its path.