Testing my Java/Android app - is my setup wrong?
I just tried to test my first android app using the emulator, it crashed (as expecte开发者_如何学JAVAd). So I load the debug view in Eclipse and now I'm not really sure what I'm looking for...
I see a tab that within the first thread I see a bunch of executions (i guess that's the right word) and they say: Source not found.
and has a button that reads Edit Source Lookup Path...
Is there something wrong with my setup here?
No, there's nothing wrong with your setup. My advice is:
- As you are still learning Android, use the
logcat
to catch know what causes your app to crash, instead of using the debugger. - Study how the eclipse debugger works and how to use it (you can learn that writting Java apps, no need of using android)
精彩评论