In my Android Studio project I have proxy settings defined in gradle.properties file, that is synched with Git repo. As long as I have my proxy password defined there, I need to move it into local.properties file. I want to achive smth like this:
in gradle.properties:
systemProp.http.proxyPassword=<local.properties>.proxy_pass
and in local.properties:
proxy_pass="PASSWORD"
How can I do that?