Skip to content Skip to sidebar Skip to footer

Application Crashes When Activity Starts

My android project crashes when I try to move from one class to another, and I always get the same error. I have possibly removed some files when I was adding external some jars. H

Solution 1:

You need to add INTERNET permission in your Manifest. Logcat clearly says that.

Solution 2:

It looks like you need to add "internet" permission to your AndroidManifest.xml:

android.permission.INTERNET E/AndroidRuntime(306): at 

For example:

<manifestxlmns:android...>
 ...
 <uses-permissionandroid:name="android.permission.INTERNET"></uses-permission></manifest>

Post a Comment for "Application Crashes When Activity Starts"