I want to set HTTPS proxy in Android Studio for Gradle. There is no standard options for set it via dialog box (HTTP or SOCK only), but according this guide I set it via gradle.properties
file in my project.
systemProp.https.proxyHost = 8.8.8.8 // just for example
systemProp.https.proxyPort = 8080
I found a free proxy server and checked it via web browser, but it is not work for Android Studio. Any hints?