Reputation: 133
I'm currently using my mobile Internet to push my android studio project to github while doing that I'm getting unable to connect to 10.20.3.11. which I used before in android studio to connect to Internet. I set that proxy to noProxy in settings and also removed proxy settings in gradle.properties(global properties) and also restarted androidstudio many times. but when I add new dependency gradle synced properly and added that dependency too. still facing proxy problem while pushing project help me I'm using ubuntu 18.04
Upvotes: 0
Views: 297
Reputation: 113
Probably your git settings are looking at a proxy already set. You can check for which proxy settings your git is configured with using the following command;
git config --global --get http.proxy
You can clear the git proxy configs using;
git config --global --unset http.proxy
Refer to this link for more info;
Upvotes: 1