Advertisement
Guest User

Untitled

a guest
Aug 11th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. ...
  5.  
  6. defaultConfig {
  7. ...
  8. systemProp.http.proxyHost=proxy.company.com
  9. systemProp.http.proxyPort=443
  10. systemProp.http.proxyUser=userid
  11. systemProp.http.proxyPassword=password
  12. systemProp.http.auth.ntlm.domain=domain
  13. }
  14. ...
  15. }
  16.  
  17. # Project-wide Gradle settings.
  18. ...
  19.  
  20. systemProp.http.proxyHost=proxy.company.com
  21. systemProp.http.proxyPort=443
  22. systemProp.http.proxyUser=username
  23. systemProp.http.proxyPassword=password
  24. systemProp.http.auth.ntlm.domain=domain
  25.  
  26. systemProp.https.proxyHost=proxy.company.com
  27. systemProp.https.proxyPort=443
  28. systemProp.https.proxyUser=username
  29. systemProp.https.proxyPassword=password
  30. systemProp.https.auth.ntlm.domain=domain
  31.  
  32. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement