Advertisement
Guest User

Untitled

a guest
Oct 9th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3.  
  4. jcenter()
  5.  
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:1.5.0'
  9.  
  10. // NOTE: Do not place your application dependencies here; they belong
  11. // in the individual module build.gradle files
  12. }
  13. }
  14.  
  15. allprojects {
  16. repositories {
  17. jcenter()
  18. }
  19. }
  20.  
  21. apply plugin: 'com.android.application'
  22.  
  23. android {
  24. compileSdkVersion 23
  25. buildToolsVersion "23.0.2"
  26.  
  27. defaultConfig {
  28. applicationId "com.example.alimohammadi.myapplication"
  29. minSdkVersion 15
  30. targetSdkVersion 23
  31. versionCode 1
  32. versionName "1.0"
  33. }
  34. buildTypes {
  35. release {
  36. minifyEnabled false
  37. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  38. }
  39. }
  40. }
  41.  
  42. dependencies {
  43. compile fileTree(dir: 'libs', include: ['*.jar'])
  44. testCompile 'junit:junit:4.12'
  45. compile 'com.android.support:appcompat-v7:23.1.1'
  46. compile 'com.android.support:design:23.1.1'
  47. }
  48.  
  49. buildscript {
  50. repositories {
  51.  
  52. mavenCentral()
  53.  
  54. }
  55. dependencies {
  56. classpath 'com.android.tools.build:gradle:1.5.0'
  57. }
  58. }
  59.  
  60. allprojects {
  61. repositories {
  62. mavenCentral()
  63. }
  64. }
  65.  
  66. systemProp.http.proxyHost=www.somehost.org
  67. systemProp.http.proxyPort=8080
  68. systemProp.http.proxyUser=user
  69. systemProp.http.proxyPassword=password
  70. systemProp.http.nonProxyHosts=localhost
  71. systemProp.http.auth.ntlm.domain=domain
  72.  
  73. systemProp.https.proxyHost=www.somehost.org
  74. systemProp.https.proxyPort=8080
  75. systemProp.https.proxyUser=user
  76. systemProp.https.proxyPassword=password
  77. systemProp.https.nonProxyHosts=localhost
  78. systemProp.https.auth.ntlm.domain=domain
  79.  
  80. buildscript {
  81. repositories {
  82. jcenter()
  83. }
  84.  
  85. dependencies {
  86. classpath 'com.android.tools.build:gradle:2.3.0'
  87. classpath 'com.google.gms:google-services:3.0.0'
  88. }
  89. }
  90.  
  91. systemProp.http.proxyHost=proxy<blabla>.com
  92. systemProp.http.proxyPort=123 (123 is just an example)
  93.  
  94. systemProp.http.proxyHost=proxy<blabla>.com
  95. systemProp.http.proxyPort=123 (123 is just an example)
  96. systemProp.https.proxyHost=proxy<blabla>.com
  97. systemProp.https.proxyPort=123
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement