Android learning pains
Creating my first android application today. First challenge, “Application … has stopped unexpectedly.” After trying to create a new intent to open a new window. Put a try/catch around it and found out that it wasn’t printing exceptions to the console. And the cause of the exception was that the Activity that my Intent was trying to start was not found. Why wasn’t it found? Turns out it wasn’t listed in the manifest file. Added, worked… done. Using Eclipse for this project seemed a bit harder than using the compact framework on Visual Studio 2008 where a lot of programming help is given by the IDE.