build.gradle 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. lintOptions {
  5. checkReleaseBuilds false
  6. }
  7. defaultConfig {
  8. applicationId "com.cygnusa.hyperm"
  9. targetSdkVersion 29
  10. minSdkVersion 21
  11. versionCode 81
  12. versionName "8.1"
  13. multiDexEnabled true
  14. }
  15. repositories {
  16. maven {
  17. url 'http://dl.bintray.com/amulyakhare/maven'
  18. }
  19. maven {
  20. url "https://github.com/omadahealth/omada-nexus/raw/master/release"
  21. }
  22. }
  23. buildTypes {
  24. release {
  25. minifyEnabled false
  26. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  27. }
  28. }
  29. compileOptions {
  30. sourceCompatibility = 1.8
  31. targetCompatibility = 1.8
  32. }
  33. buildToolsVersion = '29.0.3'
  34. }
  35. dependencies {
  36. implementation fileTree(include: ['*.jar'], dir: 'libs')
  37. implementation 'com.google.firebase:firebase-messaging:20.2.4'
  38. implementation 'androidx.appcompat:appcompat:1.2.0'
  39. implementation 'com.google.firebase:firebase-core:17.5.0'
  40. implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
  41. implementation 'com.google.code.gson:gson:2.8.6'
  42. implementation 'com.google.android.material:material:1.2.1'
  43. implementation 'com.squareup.retrofit2:retrofit:2.6.2'
  44. implementation 'com.squareup.retrofit2:converter-gson:2.6.2'
  45. implementation 'com.squareup.okhttp3:logging-interceptor:4.2.2'
  46. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  47. implementation 'androidx.legacy:legacy-support-v13:1.0.0'
  48. implementation 'androidx.multidex:multidex:2.0.1'
  49. implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
  50. implementation 'androidx.cardview:cardview:1.0.0'
  51. implementation 'com.github.bumptech.glide:glide:4.10.0'
  52. implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
  53. annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
  54. implementation 'com.github.siyamed:android-shape-imageview:0.9.3@aar'
  55. implementation 'com.ogaclejapan.smarttablayout:library:2.0.0@aar'
  56. implementation 'com.ogaclejapan.smarttablayout:utils-v13:1.7.0@aar'
  57. implementation 'androidx.palette:palette:1.0.0'
  58. implementation 'jp.wasabeef:recyclerview-animators:2.3.0'
  59. implementation 'com.github.barteksc:android-pdf-viewer:3.0.0-beta.5'
  60. implementation 'com.github.tylersuehr7:empty-state-recyclerview:1.0.4'
  61. implementation "me.leolin:ShortcutBadger:1.1.22@aar"
  62. implementation 'io.reactivex.rxjava2:rxjava:2.2.14'
  63. implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
  64. implementation 'com.github.dmytrodanylyk.shadow-layout:library:1.0.3'
  65. implementation 'com.budiyev.android:circular-progress-bar:1.1.9'
  66. implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
  67. implementation 'com.andrognito.pinlockview:pinlockview:2.1.0'
  68. implementation 'com.github.traex.rippleeffect:ripple:1.3.1-OG'
  69. implementation 'uk.me.lewisdeane.ldialogs:ldialogs:1.2.0@aar'
  70. implementation 'com.intuit.sdp:sdp-android:1.0.6'
  71. implementation 'com.github.douglasjunior:android-simple-tooltip:0.2.2'
  72. implementation 'net.cachapa.expandablelayout:expandablelayout:2.9.2'
  73. implementation 'com.github.warkiz.widget:indicatorseekbar:2.1.2'
  74. implementation 'org.jsoup:jsoup:1.11.3'
  75. implementation 'com.squareup.okhttp:okhttp:2.7.5'
  76. implementation 'com.github.aakira:expandable-layout:1.6.0@aar'
  77. implementation 'com.wdullaer:materialdatetimepicker:4.2.3'
  78. implementation 'com.github.lzyzsd:circleprogress:1.2.1'
  79. implementation 'com.annimon:stream:1.2.1'
  80. implementation 'com.yanzhenjie.zbar:camera:1.0.0'
  81. implementation 'com.yanzhenjie:permission:2.0.3'
  82. implementation 'net.danlew:android.joda:2.10.6.1'
  83. }
  84. apply plugin: 'com.google.gms.google-services'