The Source Attachment Does Not Contain The Source For The File SQLiteOpenHelper.class
I had a sample app in android version 4.2. I had set Breakpoints for each and every line. At the time of debugging, suddenly the debugging stopped saying that 'The source attachmen
Solution 1:
A .jar does not expose its source code by itself. You'll have to add the source code by yourself to be able to browse it.
You can be pretty sure though that the mistake will be on your own side, so you could question the use of debugging Android code :)
You can add it manually (don't remember how, Google) or use an Eclipse plugin which did a good job for me in the past; https://code.google.com/p/adt-addons/ Might be a little out-dated though.
Post a Comment for "The Source Attachment Does Not Contain The Source For The File SQLiteOpenHelper.class"