Advertisement
Guest User

Untitled

a guest
May 29th, 2018
628
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'io.fabric'
  3.  
  4. android {
  5. compileSdkVersion 26
  6. defaultConfig {
  7. applicationId "com.android.virgilonfire"
  8. minSdkVersion 21
  9. targetSdkVersion 26
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. }
  14.  
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21.  
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_8
  24. targetCompatibility JavaVersion.VERSION_1_8
  25. }
  26. }
  27.  
  28. dependencies {
  29. implementation fileTree(dir: 'libs', include: ['*.jar'])
  30.  
  31. // Support
  32. implementation "com.android.support:appcompat-v7:$supportLibrary"
  33. implementation "com.android.support.constraint:constraint-layout:$constraintLayout"
  34. implementation "com.android.support:design:$supportLibrary"
  35.  
  36. // RxJava
  37. implementation "io.reactivex.rxjava2:rxandroid:$rxJava"
  38. implementation "io.reactivex.rxjava2:rxjava:$rxAndroid"
  39. implementation "com.squareup.retrofit2:adapter-rxjava:$rxRetrofitAdapter"
  40.  
  41. // Retrofit
  42. implementation "com.squareup.retrofit2:retrofit:$retrofit"
  43.  
  44. // Gson
  45. implementation "com.google.code.gson:gson:$gson"
  46. implementation "com.squareup.retrofit2:converter-gson:$converterGson"
  47.  
  48. // Logging Interceptor
  49. implementation "com.squareup.okhttp3:logging-interceptor:$loggingInterceptor"
  50.  
  51. // ButterKnife
  52. implementation "com.jakewharton:butterknife:$butterKnife"
  53. annotationProcessor "com.jakewharton:butterknife-compiler:$butterKnife"
  54.  
  55. // Network Tracker
  56. implementation "com.github.pwittchen:reactivenetwork-rx2:$networkTracker"
  57.  
  58. // Virgil Security
  59. implementation "com.virgilsecurity.sdk:crypto-android:$virgilCrypto"
  60. implementation "com.virgilsecurity.sdk:sdk:$virgilSdk"
  61.  
  62. // Dagger
  63. implementation "com.google.dagger:dagger-android:$dagger"
  64. annotationProcessor "com.google.dagger:dagger-compiler:$dagger"
  65. annotationProcessor "com.google.dagger:dagger-android-processor:$dagger"
  66.  
  67. // Apache commons
  68. implementation "org.apache.commons:commons-lang3:$apacheCommons"
  69.  
  70. // Firebase
  71. implementation "com.google.firebase:firebase-core:$firebaseCore"
  72. implementation "com.google.firebase:firebase-auth:$firebaseAuth"
  73. implementation "com.google.firebase:firebase-firestore:$firebaseFirestore"
  74. implementation "com.crashlytics.sdk.android:crashlytics:$crashlytics"
  75. }
  76.  
  77. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement