Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. mavenCentral()
  4. }
  5. dependencies {
  6. classpath 'com.android.tools.build:gradle:0.5.+'
  7. }
  8. }
  9. apply plugin: 'android'
  10.  
  11. repositories {
  12. mavenCentral()
  13.  
  14. maven {
  15. url 'http://ksoap2-android.googlecode.com/svn/m2-repo'
  16. }
  17. }
  18.  
  19. android {
  20. compileSdkVersion 18
  21. buildToolsVersion "18.0.1"
  22.  
  23. defaultConfig {
  24. minSdkVersion 7
  25. targetSdkVersion 18
  26. }
  27. }
  28.  
  29. dependencies {
  30. compile 'com.android.support:support-v4:18.0.0'
  31. compile 'ch.acra:acra:4.5.0'
  32. compile 'com.google.guava:guava:12.0'
  33. compile 'com.google.code.ksoap2-android:ksoap2-android:3.0.0'
  34. }
  35.  
  36. apply plugin: 'android-library'
  37.  
  38. buildscript {
  39. repositories {
  40. mavenCentral()
  41. maven { url 'http://ksoap2-android.googlecode.com/svn/m2-repo' }
  42. }
  43. dependencies {
  44. classpath 'com.android.tools.build:gradle:0.8.+'
  45. classpath 'com.google.code.ksoap2-android:ksoap2-android:3.1.1'
  46. }
  47. }
  48.  
  49. repositories {
  50. maven { url 'http://ksoap2-android.googlecode.com/svn/m2-repo' }
  51. }
  52.  
  53.  
  54. android {
  55. compileSdkVersion 19
  56. buildToolsVersion "19.0.1"
  57.  
  58. defaultConfig {
  59. minSdkVersion 15
  60. targetSdkVersion 19
  61. versionCode 1
  62. versionName "1.0"
  63. }
  64. release {
  65. runProguard false
  66. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  67. }
  68. }
  69.  
  70. dependencies {
  71.  
  72. compile 'com.google.code.ksoap2-android:ksoap2-android:3.1.1'
  73.  
  74. }
  75.  
  76. apply plugin: 'com.android.application'
  77.  
  78. android {
  79. compileSdkVersion 21
  80. buildToolsVersion "20.0.0"
  81.  
  82. defaultConfig {
  83. applicationId "com.example.test"
  84. minSdkVersion 15
  85. targetSdkVersion 21
  86. versionCode 1
  87. versionName "1.0"
  88. }
  89. buildTypes {
  90. release {
  91. runProguard false
  92. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  93. }
  94. repositories {
  95. maven { url 'http://ksoap2-android.googlecode.com/svn/m2-repo' }
  96. }
  97. }
  98. }
  99.  
  100. dependencies {
  101. compile fileTree(dir: 'libs', include: ['*.jar'])
  102. compile 'com.google.code.ksoap2-android:ksoap2-android:3.3.0'
  103. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement