2011-04-29

Android Development Basic - Setting up Windows's environment variables

Android Development Basic - Setting up Windows's environment variables

When preparing a new development environment for android development, following environment variables are essential to be setup.

1) JAVA_HOME (e.g. C:\Program Files\Java\jdk1.6.0_24), // this is pointing to the Java JDK directory.
2) ANDROID_HOME (e.g. C:\Android\android-sdk),  // this is pointing to you installed Android SDK directory.
3) PATH (e.g. c:\Android\android-sdk\platform-tools;   // this will be pointing to the common tools that you going to use in command prompt.
              c:\Program Files\Java\jdk1.6.0_24\bin;
              %ANDROID_HOME%\tools; )

With the above environment variable setup, you can get started easily with android development.

2011-02-07

Fixing Visual Studio 2008 SP1 constant crashing.

While undoubtedly Visual Studio 2008 is a great development tools, it has been reported to be constant crashing and cause the IDE to shutdown unexpectedly and this may causes unsaved work losses.

An description from the MSDN KB state the following:
VS2008 SP1: In Visual Studio 2008 SP1, having windows in non-default locations, for example after docking and undocking windows, when switching between debugging and designing or switching to/from full screen, can result in a crash of the Visual Studio IDE.

This Hotfix was updated on May 11, 2009 to address a shortcoming with the original Hotfix (published Mar 12, 2009) whereby XAML Intellisense may cease functioning after applying the Hotfix. If you have applied the original Hotfix, it is not necessary to uninstall it to apply the updated (V2) Hotfix.


The hotfix for the issue can be downloaded from here : http://code.msdn.microsoft.com/KB960075

ShareThis