Reputation: 31
I changed android studio http and https proxy setting to use it in my university. Now i cant find https settings, changed http settings but still cant resolve dependencies as they use https. Anyone knows how to change https proxy settings?
Upvotes: 3
Views: 5460
Reputation: 565
Edit proxy settings in the following places.
Upvotes: 1
Reputation: 6295
It took me several hours to find solution for this, But I finally found out it not part of Android Studio preferences, but it's configured in "gradle.properties" of project.
systemProp.https.proxyPort=11111
systemProp.http.proxyHost=127.0.0.1
systemProp.https.proxyHost=127.0.0.1
systemProp.http.proxyPort=11111
Hope this helps :)
Upvotes: 3