Reputation: 233
emulator shows " unfortuantely myapp has stop working "
earline was getting this line in console
Starting activity com.example.hotornot.SQLiteExample on device emulator-5554
but now GET THIS LINE.... can anybody tell me the error
ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.hotornot/.SQLiteExample }
Upvotes: 0
Views: 1159
Reputation: 111
Follow these steps
you need to set android:debuggable="true"
in your application in the AndroidManifest.xml
. if you haven't set that setting, debugging will not be enabled.
either start the app by right clicking on the project and select Debug As->Android Application or by running it normally and later in the DDMS
perspective select the running app in your devices pane and click on the green bug.
then please post the log cat here.
Source for steps: How to Debug Android application line by line using Eclipse?
Upvotes: 1