My application is using a bootup service.In the service i have to get values from a database,but the app is crashing as it tries getting the values...
The logcat err
From the error it seems that you are fetching some content from the Database in the Cursor. But fetching the content from the Cursor you need to point the Cursor to the first row that your cursor contains. So you need to apply cursor.moveToFirst(); to get it working, if this is the case. Else you should post the full source or the code where you feel its crashing.