Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-android-extensions'
  4.  
  5. android {
  6. compileSdkVersion versions.compileSdk
  7. buildToolsVersion "26.0.1"
  8. defaultConfig {
  9. applicationId "pl.droidsonroids.bootcamp.rxbootcamp"
  10. minSdkVersion 21
  11. targetSdkVersion versions.compileSdk
  12. versionCode 1
  13. versionName "1.0"
  14. }
  15. }
  16.  
  17. dependencies {
  18. implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$versions.kotlin"
  19. implementation 'io.reactivex.rxjava2:rxkotlin:2.1.0'
  20. implementation 'io.reactivex.rxjava2:rxjava:2.1.3'
  21. implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
  22. implementation "com.squareup.retrofit2:retrofit:$versions.retrofit"
  23. implementation "com.squareup.retrofit2:adapter-rxjava2:$versions.retrofit"
  24. implementation "com.squareup.retrofit2:converter-moshi:$versions.retrofit"
  25. implementation 'com.jakewharton.rxbinding2:rxbinding-kotlin:2.0.0'
  26. implementation 'com.android.support:recyclerview-v7:26.1.0'
  27. testImplementation 'junit:junit:4.12'
  28. testImplementation 'org.assertj:assertj-core:3.8.0'
  29. testImplementation 'org.mockito:mockito-core:2.10.0'
  30. testImplementation 'com.nhaarman:mockito-kotlin-kt1.1:1.5.0'
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement