Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 28
  5. buildToolsVersion "29.0.0"
  6. defaultConfig {
  7. applicationId "dev.blank.izymeeting"
  8. minSdkVersion 17
  9. targetSdkVersion 28
  10. versionCode 1
  11. versionName "0.0.6"
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. vectorDrawables.useSupportLibrary = true
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. }
  22.  
  23. dependencies {
  24. implementation fileTree(dir: 'libs', include: ['*.jar'])
  25. implementation 'androidx.appcompat:appcompat:1.1.0'
  26. implementation 'androidx.recyclerview:recyclerview:1.0.0'
  27. implementation 'androidx.cardview:cardview:1.0.0'
  28. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  29. implementation 'com.google.android.material:material:1.0.0'
  30. implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
  31. implementation 'com.makeramen:roundedimageview:2.3.0'
  32. implementation 'com.github.bumptech.glide:glide:4.9.0'
  33. implementation 'de.hdodenhof:circleimageview:3.0.0'
  34. // implementation 'com.stepstone.apprating:app-rating:2.3.1'
  35. implementation 'com.github.bumptech.glide:annotations:4.9.0'
  36. annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
  37. testImplementation 'junit:junit:4.12'
  38.  
  39. androidTestImplementation 'androidx.test:runner:1.2.0'
  40. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  41. implementation 'com.squareup.retrofit2:retrofit:2.5.0'
  42. implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
  43. implementation 'com.squareup.okhttp3:logging-interceptor:3.8.0'
  44. implementation 'com.facebook.shimmer:shimmer:0.4.0@aar'
  45. implementation 'com.squareup.retrofit2:converter-scalars:2.3.0'
  46.  
  47. implementation 'com.google.firebase:firebase-core:17.2.0'
  48. implementation 'com.google.firebase:firebase-messaging:20.0.0'
  49. //implementation 'com.github.applikeysolutions:cosmocalendar:1.0.4'
  50. implementation 'com.google.code.gson:gson:2.8.5'
  51.  
  52. implementation 'androidx.navigation:navigation-fragment:2.1.0'
  53. implementation 'androidx.navigation:navigation-ui:2.1.0'
  54. implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
  55.  
  56. implementation 'com.google.android.material:material:1.1.0-alpha10'
  57. implementation project(path: ':cosmocalendar-release')
  58. implementation 'org.jetbrains:annotations-java5:15.0'
  59. implementation 'com.google.firebase:firebase-analytics:17.2.0'
  60. implementation 'com.synnapps:carouselview:0.1.5'
  61. implementation 'com.google.firebase:firebase-auth:19.0.0'
  62. implementation 'com.facebook.android:facebook-android-sdk:5.5.1'
  63. implementation 'com.google.android.gms:play-services-auth:17.0.0'
  64. api 'io.jsonwebtoken:jjwt-api:0.10.7'
  65. runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.10.7'
  66. runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.10.7') {
  67. exclude group: 'org.json', module: 'json' //provided by Android natively
  68. }
  69.  
  70. }
  71.  
  72. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement