Configurare il Proxy sull\'emulatore Android


/ Published in: Java
Save to your folder(s)

Configurare il Proxy sull'emulatore


Copy this code and paste it in your HTML
  1. // Da terminale
  2. adb shell
  3. # sqlite3 /data/data/com.android.providers.settings/databases/settings.db
  4. sqlite> INSERT INTO system VALUES(99,'http_proxy','<PROXY_IP>:<PROXY_Port>');
  5. sqlite> SELECT * FROM system;
  6.  
  7. // In alternativa, aggiungere le seguenti opzioni all'emulatore
  8. -http-proxy <PROXY_IP>:<PROXY_Port>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.