QUOTE(cowithgun @ Dec 28 2011, 01:39 AM)
Not all game save to /sdcard. By design, all App has 2 folders:
/data/app/app_package - this store the main apk
/data/data/app_package - this store all the game files, save game, etc
both of this are on the Device memory. however, most big game knows there is limited space in the device memory, they will use "getExternalFilesDir()" API to get the external storage. This actually resolved into "/sdcard/Android/data/app_package".
All these 3 folders will be removed when you uninstalled the game.
However, some lazy programmers (including all gameloft game) actually just hard coded "/sdcard/gameloft" into the code. These type of game may have function to remove the downloaded file, but if not, you may need to manually delete them.
Excellent info! I find myself coming back to this thread just to read your snippets of Android knowledge

QUOTE(Besanth @ Dec 27 2011, 10:06 PM)
I've had problems with Galaxy W but when I post in this thread, sure got people help me solve it. I'm a very satisfied Galaxy W user

Actually, that applies to any smartphone with a bigger than average community. SGS, SGS2, DHD, IP4S, etc.
This post has been edited by Dannyl: Dec 28 2011, 10:43 AM