i want to do seetings for proxy in android emulator
- > adb shell
- # sqlite3 /data/data/com.google.android.providers.settings/databases/settings.db
- sqlite> INSERT INTO system VALUES(99,’http_proxy', 'proxy:port');
- sqlite>.exit
but it is solution for temporary....i want to do permen开发者_如何学Got ...when i restart my Emulator than i must set again all settings..so whats solution of this problem....
There's a command line option -http-proxy
when starting the emulator
http://developer.android.com/guide/developing/tools/emulator.html
精彩评论