Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. // support
  2. compile "com.android.support:design:${supporLib}"
  3. compile "com.android.support:cardview-v7:${supporLib}"
  4.  
  5. // google play services
  6. compile "com.google.android.gms:play-services-location:${playServices}"
  7. compile "com.google.android.gms:play-services-maps:${playServices}"
  8. compile "com.google.android.gms:play-services-analytics:${playServices}"
  9. compile "com.google.android.gms:play-services-gcm:${playServices}"
  10.  
  11. // firebase
  12. compile "com.google.firebase:firebase-core:${firebase}"
  13. compile "com.google.firebase:firebase-messaging:${firebase}"
  14.  
  15. // multidex
  16. compile 'com.android.support:multidex:1.0.1'
  17.  
  18. //butterknife
  19. compile "com.jakewharton:butterknife:${butterknife}"
  20. annotationProcessor "com.jakewharton:butterknife-compiler:${butterknife}"
  21.  
  22. // dagger
  23. compile "com.google.dagger:dagger:${dagger}"
  24. annotationProcessor "com.google.dagger:dagger-compiler:${dagger}"
  25.  
  26. // moxy
  27. compile "com.arello-mobile:moxy:${moxy}"
  28. compile "com.arello-mobile:moxy-app-compat:${moxy}"
  29. annotationProcessor "com.arello-mobile:moxy-compiler:${moxy}"
  30.  
  31. // rx
  32. compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
  33. compile 'io.reactivex.rxjava2:rxjava:2.0.8'
  34. compile 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
  35. compile 'com.tbruyelle.rxpermissions2:rxpermissions:0.9.3@aar'
  36.  
  37. // stetho
  38. compile "com.facebook.stetho:stetho:${stetho}"
  39. compile "com.facebook.stetho:stetho-okhttp3:${stetho}"
  40.  
  41. // retrofit
  42. compile "com.squareup.retrofit2:retrofit:${retrofit}"
  43. compile "com.squareup.retrofit2:converter-gson:${retrofit}"
  44. compile "com.squareup.retrofit2:adapter-rxjava2:${retrofit}"
  45.  
  46. // okhttp
  47. compile "com.squareup.okhttp3:okhttp:${okhttp}"
  48. compile "com.squareup.okhttp3:logging-interceptor:${okhttp}"
  49.  
  50. // async
  51. compile 'com.redmadrobot:chronos:1.0.7'
  52. compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
  53.  
  54. // glide
  55. compile 'com.github.bumptech.glide:glide:3.7.0'
  56. compile 'com.github.bumptech.glide:okhttp3-integration:1.4.0@aar'
  57. compile 'jp.wasabeef:glide-transformations:2.0.2'
  58.  
  59. // ormlite
  60. compile "com.j256.ormlite:ormlite-core:${ormlite}"
  61. compile "com.j256.ormlite:ormlite-android:${ormlite}"
  62.  
  63. // recycler view
  64. compile 'eu.davidea:flexible-adapter:5.0.0-b8'
  65. compile 'com.bignerdranch.android:expandablerecyclerview:2.1.1'
  66.  
  67. // fabric
  68. compile('com.crashlytics.sdk.android:crashlytics:2.6.7@aar') {
  69. transitive = true;
  70. }
  71.  
  72. // social
  73. compile 'com.facebook.android:facebook-android-sdk:4.10.0'
  74. compile 'ru.ok:odnoklassniki-android-sdk:2.0.2'
  75.  
  76. // chat
  77. compile 'com.webimapp.sdk:webimclientsdkandroid:3.0.0'
  78. compile 'com.dewarder:holdingbutton:0.0.6'
  79.  
  80. // ui
  81. compile 'com.isseiaoki:simplecropview:1.1.4'
  82. compile 'com.adamstyrc.cookiecutter:cookie-cutter:1.0.2'
  83. compile 'com.github.chrisbanes:PhotoView:1.3.1'
  84. compile 'com.github.JakeWharton:ViewPagerIndicator:2.4.1'
  85. compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.1'
  86. compile 'ru.rambler.android:swipe-layout:1.0.14'
  87. compile 'com.afollestad.material-dialogs:core:0.9.0.1'
  88.  
  89. // utils
  90. compile 'com.androidmapsextensions:android-maps-extensions:2.4.0'
  91. compile 'com.karumi:dexter:2.2.2'
  92. compile 'de.greenrobot:eventbus:2.4.0'
  93. compile 'uk.co.chrisjenx:calligraphy:2.2.0'
  94. compile 'com.journeyapps:zxing-android-embedded:3.4.0'
  95. compile 'ru.tinkoff.decoro:decoro:1.3.2'
  96. compile 'com.yandex.android:speechkit:2.5.0'
  97.  
  98. compile project (':ahbottomnavigation')
  99. compile project (':vksdk_library')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement