I just updated my Android SDK and my app crashes with:
Could not find class 'com.google.gson.Gson'
Everything was working fine until I did this upgrade. My Gson jar file was external and in the libs directory. I have a feeling that Google decided to include the Gson as part of their SDK update and for some strange reason it won't get found. My PC crashed when updating the SDK, so it's possible that maybe something got corrupted but I have no idea where Gson is stored. After deleting my Gson jar file in the libs directory, it is clear that my app is able to access it via the SDK somehow. But my app will crash if it attempts to execute:
Gson gson = new Gson();
Any idea how I can fix this problem?