Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android SDK setting proxy with ubuntu

Where can I find android SDK proxy setting?

I am working with ubuntu, thanks in advance.

All what I have is in below screen

enter image description here

like image 985
Vervatovskis Avatar asked Dec 21 '22 23:12

Vervatovskis


1 Answers

I can only check this on my mac at the moment. The settings are stored in ~/.android/androidtool.cfg

My settings currently look like:

### Settings for Android Tool
#Thu Dec 08 12:22:00 GMT 2011
http.proxyPort=8080
http.proxyHost=127.0.0.1
sdkman.show.update.only=true
sdkman.ask.adb.restart=false
sdkman.force.http=false

So try manually editing that file (assuming it's in the same place on ubuntu)

like image 133
Ruddles Avatar answered Dec 23 '22 12:12

Ruddles