"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
<activityandroid:name="com.techblogon.activitylifecycleexample.MainActivity"android:label="@string/app_name" >
Try changing the second to:
<activityandroid:name=".MainActivity"android:label="@string/app_name" >
Post a Comment for ""unfortunately My App Has Stopped""