How can I debug an Android app without Eclipse?
I'm currently developing a Scala application for Android. I probably could get by, with the help of many println
, but I'm cur开发者_运维知识库ious if there's a way to debug it with an actual debugger. I am using sbt to build the project, with the jberkel/android-plugin
You may have more luck with IntelliJ IDEA android plugin (free community version has android support, but I'm not sure about scala, full version is available for 30 days)
You don't necessarily need Eclipse to debug your application
In your android/tools
directory is a file called ddms
- if you start it you get a device overview, a log cat screen for debugging and additional information
精彩评论