On Fri, Feb 4, 2011 at 12:41 PM, Robin Talwar <[email protected]>wrote:
> But i have no idea what is it saying Then you need to spend some time learning how to read stack traces, as it's a crucial part of development. 02-05 00:09:50.429: WARN/System.err(256): java.lang.NullPointerException 02-05 00:09:50.450: WARN/System.err(256): at com.hungama.myplay.db.DBManager.scanAndSaveFiles(DBManager.java:125) This tells you exactly what happened and where it happened. Now it's up to you to use your debugger, stop at that point, and figure out why something is null. ------------------------------------------------------------------------------------------------- TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago transit tracking app for Android-powered devices -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

