I'm very new to Android programming. Based on the available documentation I was trying to use the MapView
API(I'm working from behind a corporate proxy). I'm able to compile the application and successfully installed it in the emulator available with SDK. But instead of the graph, I could only see a grid in the emulator with a google logo. From the other post available on this point I summe that this malfunctioning is due the Proxy sitting between me and Google map. Based on the posts made by Mr. plusminus, I tried to give an entry in the SQLite db for the proxy settings
I used the following command to insert this information from my prompt
adb shell sqlite3 /data/data/com.google.android.providers.settings/databases/settings.db "INSERT INTO system VALUES(99,'192.168.0.34:80')"
But it didn't give me any notification like the operation was success or not
Then, assuming the insert operation was a success, I did tried a select command
adb shell sqlite3 /data/data/com.google.android.providers.settings/databases/settings.db "SELECT * from system"
But that too is not giving me any result.
Can any body please help me, I feel I'm in trouble
And, issue with the emulator for graph is due to "Proxy" ?


