Advertisement
Roctik

Untitled

Mar 19th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. maven { url 'https://maven.fabric.io/public' }
  4. }
  5.  
  6. dependencies {
  7. classpath 'io.fabric.tools:gradle:1.27.1'
  8.  
  9. }
  10. }
  11. apply plugin: 'com.android.application'
  12. apply plugin: 'io.fabric'
  13.  
  14. repositories {
  15. maven { url 'https://maven.fabric.io/public' }
  16. }
  17.  
  18.  
  19. android {
  20. compileSdkVersion 28
  21.  
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_8
  24. targetCompatibility JavaVersion.VERSION_1_8
  25. }
  26.  
  27. lintOptions {
  28. disable 'RestrictedApi'
  29. }
  30. defaultConfig {
  31. applicationId "com.guide"
  32. minSdkVersion 23
  33. targetSdkVersion 28
  34. versionCode 1
  35. versionName "1.0"
  36. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  37. }
  38. buildTypes {
  39. release {
  40. minifyEnabled false
  41. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  42. }
  43. }
  44. }
  45.  
  46. dependencies {
  47. implementation fileTree(dir: 'libs', include: ['*.jar'])
  48. implementation 'com.android.support:appcompat-v7:28.0.0'
  49. implementation 'com.android.support:support-v4:28.0.0'
  50. implementation 'com.android.support:design:28.0.0'
  51. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  52. testImplementation 'junit:junit:4.12'
  53. //rxjava
  54. implementation 'io.reactivex.rxjava2:rxjava:2.2.3'
  55. implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
  56. implementation 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
  57. implementation 'com.jakewharton.rxbinding2:rxbinding-appcompat-v7:2.0.0'
  58. // retrofit
  59. implementation 'com.squareup.retrofit2:retrofit:2.5.0'
  60. implementation 'com.squareup.retrofit2:converter-jackson:2.3.0'
  61. implementation 'com.squareup.retrofit2:adapter-rxjava2:2.5.0'
  62. implementation 'com.squareup.okhttp3:logging-interceptor:3.12.1'
  63. implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
  64.  
  65. implementation 'com.jakewharton:butterknife:8.8.1'
  66. annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
  67. implementation 'org.glassfish:javax.annotation:10.0-b28'
  68. implementation 'com.google.code.gson:gson:2.8.5'
  69. //stetho
  70. implementation 'com.facebook.stetho:stetho:1.5.0'
  71.  
  72. implementation 'com.google.android.gms:play-services-maps:16.1.0'
  73. implementation 'com.mapbox.mapboxsdk:mapbox-android-sdk:7.2.0'
  74. implementation 'com.google.android.gms:play-services-location:16.0.0'
  75.  
  76. implementation 'com.android.support:recyclerview-v7:28.0.0'
  77.  
  78. implementation 'com.github.bumptech.glide:glide:4.8.0'
  79. annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
  80. implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.8.1'
  81. implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9'
  82. //jsoup
  83. implementation 'org.jsoup:jsoup:1.11.3'
  84.  
  85.  
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement