Guest User

Untitled

a guest
May 20th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 27
  5. defaultConfig {
  6. applicationId "ng.rideon.drivers"
  7. minSdkVersion 16
  8. targetSdkVersion 27
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. compileOptions {
  20. sourceCompatibility JavaVersion.VERSION_1_8
  21. targetCompatibility JavaVersion.VERSION_1_8
  22. }
  23.  
  24. }
  25.  
  26. dependencies {
  27. implementation fileTree(dir: 'libs', include: ['*.jar'])
  28. implementation 'com.android.support:appcompat-v7:27.1.1'
  29. implementation 'com.android.support:design:27.1.1'
  30. implementation 'com.android.support:support-v4:27.1.1'
  31. implementation 'com.android.support:cardview-v7:27.1.1'
  32. implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  33.  
  34. implementation 'com.google.android.gms:play-services-maps:11.8.0'
  35. implementation 'com.google.android.gms:play-services-location:11.8.0'
  36.  
  37. implementation 'com.github.bumptech.glide:glide:4.6.1'
  38. implementation 'io.reactivex:rxjava:1.1.6'
  39. implementation 'io.reactivex:rxandroid:1.2.1'
  40. implementation 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
  41. implementation 'com.android.volley:volley:1.0.0'
  42. implementation 'com.google.code.gson:gson:2.8.2'
  43. implementation 'com.squareup.retrofit2:retrofit:2.4.0'
  44. implementation 'com.jakewharton:butterknife:8.8.1'
  45. annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
  46. implementation 'com.squareup.retrofit2:converter-scalars:2.4.0'
  47. implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
  48. implementation 'com.github.ozodrukh:CircularReveal:1.0.5'
  49. testImplementation 'junit:junit:4.12'
  50. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  51. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  52. implementation 'com.android.support:support-annotations:27.1.1'
  53. }
Add Comment
Please, Sign In to add comment