Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. repositories {
  2. maven {
  3. url 'http://msl.dist.mycardcare.com:8080/repository/internal'
  4. }
  5. flatDir {
  6. dirs 'libs'
  7. }
  8. }
  9.  
  10. apply plugin: 'com.android.application'
  11.  
  12. android {
  13. compileSdkVersion 22
  14. buildToolsVersion "22.0.1"
  15.  
  16. defaultConfig {
  17. applicationId "com.alliancedata.sampleapp"
  18. minSdkVersion 14
  19. targetSdkVersion 22
  20. versionCode 1
  21. versionName "1.0"
  22. multiDexEnabled true
  23. }
  24. buildTypes {
  25. release {
  26. minifyEnabled false
  27. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  28. }
  29. }
  30. }
  31.  
  32. dependencies {
  33. //compile 'com.alliancedata:accountcenter:1.0'
  34. compile(name:'accountcenter-1.0', ext:'aar')
  35. compile 'com.android.support:appcompat-v7:22.2.0'
  36.  
  37. // retrofit: REST API Client
  38. compile 'com.squareup.retrofit:retrofit:1.9.0'
  39. compile 'com.squareup.okhttp:okhttp:2.3.0'
  40. compile 'com.squareup.okhttp:okhttp-urlconnection:2.3.0'
  41.  
  42.  
  43. // dagger: Dependency injections
  44. compile 'com.squareup.dagger:dagger:1.2.0'
  45. compile 'javax.annotation:jsr250-api:1.0'
  46.  
  47. // otto: Event bus for communicating between decoupled parts of the app
  48. compile 'com.squareup:otto:1.3.6'
  49.  
  50. // glide: Image downloading and caching
  51. compile 'com.github.bumptech.glide:glide:3.5.2'
  52. compile 'com.squareup.picasso:picasso:2.5.2'
  53. // mustache: Templating for html / webviews
  54. compile 'com.samskivert:jmustache:1.9'
  55.  
  56. // rebound for spring physics
  57. compile 'com.facebook.rebound:rebound:0.3.7'
  58.  
  59. // spongycastle (encryption)
  60. compile 'com.madgag.spongycastle:core:1.51.0.0'
  61. compile 'com.madgag.spongycastle:prov:1.51.0.0'
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement