Skip to content Skip to sidebar Skip to footer

"Unfortunately My App Has Stopped"

i'was create a app for android but there is a error found ' Unfortunately My App has stopped ' so please help me AndroidManifest .xml

Solution 1:

The package names in your manifest file dont add up IMO. First try to correct them;

package="com.example.techtips"

and

   <activity
        android:name="com.techblogon.activitylifecycleexample.MainActivity"
        android:label="@string/app_name" >

Try changing the second to:

 <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >

Post a Comment for ""Unfortunately My App Has Stopped""