Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. jcenter()
  4. }
  5.  
  6. dependencies {
  7. classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
  8. }
  9. }
  10.  
  11. apply plugin: 'com.android.application'
  12. apply plugin: 'com.neenbedankt.android-apt'
  13.  
  14. android {
  15. compileSdkVersion 25
  16. buildToolsVersion "25.0.3"
  17. defaultConfig {
  18. applicationId "moviesearch.netflix"
  19. minSdkVersion 16
  20. targetSdkVersion 25
  21. versionCode 1
  22. versionName "1.0"
  23.  
  24. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  25. }
  26. buildTypes {
  27. release {
  28. minifyEnabled false
  29. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  30. }
  31. }
  32. }
  33.  
  34. dependencies {
  35. compile fileTree(dir: 'libs', include: ['*.jar'])
  36.  
  37. // Espresso
  38. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  39. exclude group: 'com.android.support', module: 'support-annotations'
  40. })
  41. androidTestCompile('com.android.support.test:runner:0.5', {
  42. exclude group: 'com.android.support', module: 'support-annotations'
  43. })
  44.  
  45. androidTestCompile('com.android.support.test.espresso:espresso-contrib:2.2', {
  46. exclude group: 'com.android.support', module: 'appcompat'
  47. exclude group: 'com.android.support', module: 'support-v4'
  48. exclude group: 'com.android.support', module: 'support-annotations'
  49. exclude module: 'recyclerview-v7'
  50. })
  51.  
  52. // RxJava
  53. compile 'io.reactivex.rxjava2:rxjava:2.1.0'
  54. compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
  55.  
  56. // Retrofit
  57. compile 'com.squareup.retrofit2:retrofit:2.2.0'
  58. compile 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'
  59. compile 'com.squareup.retrofit2:converter-gson:2.2.0'
  60. compile 'com.squareup.retrofit2:retrofit-mock:2.2.0'
  61.  
  62. // Butterknife
  63. compile 'com.jakewharton:butterknife:8.5.1'
  64. apt 'com.jakewharton:butterknife-compiler:8.5.1'
  65.  
  66. // Picasso
  67. compile 'com.squareup.picasso:picasso:2.5.2'
  68.  
  69. // Android
  70. compile 'com.android.support:appcompat-v7:25.3.1'
  71. compile 'com.android.support:recyclerview-v7:25.3.1'
  72. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  73. testCompile 'junit:junit:4.12'
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement