Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 22
  5. buildToolsVersion "22.0.1"
  6.  
  7. defaultConfig {
  8. applicationId "it.unige.bluemix"
  9. minSdkVersion 15
  10. targetSdkVersion 22
  11. versionCode 1
  12. versionName "1.0"
  13. // multiDexEnabled true
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. }
  22.  
  23.  
  24. dependencies {
  25. compile fileTree(include: ['*.jar'], dir: 'libs')
  26.  
  27. // compile 'com.cloudant:cloudant-sync-datastore-core:latest.release'
  28. compile 'com.cloudant:cloudant-sync-datastore-android:latest.release'
  29.  
  30. // compile 'com.android.support:multidex:1.0.0'
  31. // compile 'com.google.code.findbugs:jsr305:3.0.0'
  32. compile 'com.android.support:appcompat-v7:22.2.1'
  33. compile 'com.google.android.gms:play-services:7.5.0'
  34. // Play services jar, uncomment below to utilize google play services
  35. // compile 'com.google.android.gms:play-services:+'
  36.  
  37. //I have to cancel these four lines
  38. compile 'com.ibm.mobile.services:ibmdata:1.+'
  39. compile 'com.ibm.mobile.services:ibmbluemix:1.+'
  40. compile 'com.ibm.mobile.services:ibmfilesync:1.+'
  41. compile 'com.ibm.mobile.services:ibmcloudcode:1.0.1.20150311-1224'
  42.  
  43. compile 'com.google.guava:guava-io:r03'
  44. compile 'com.squareup.okhttp:okhttp:2.5.0'
  45. compile 'com.android.support:recyclerview-v7:22.0.0'
  46. compile 'com.android.support:cardview-v7:22.0.0'
  47. compile 'com.squareup.picasso:picasso:2.5.2'
  48.  
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement