Skip to content Skip to sidebar Skip to footer

Android Logcat Errors

I am new to Android, but not new to Java, and I am experienced with Eclipse. However, I just installed the newest Android SDK from developer.Android.com and installed in Eclipse 4

Solution 1:

It's pretty common to see many errors in android emulator logcat, unfortunately. I wouldn't worry about this unless you are having problems with your app.

Solution 2:

Since logcat logs all the events happening on your device including touch events or accessing google apis that are needed to background sync your phone. So it will show you some errors in red. That is normal, if there is any problem with your application, it will point out to that error prone line with its line number.

Post a Comment for "Android Logcat Errors"