build.gradle 523 B

12345678910111213141516171819202122
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. apply from: 'publish.gradle'
  5. android {
  6. compileSdkVersion 30
  7. defaultConfig {
  8. minSdkVersion 21
  9. }
  10. compileOptions {
  11. sourceCompatibility JavaVersion.VERSION_1_8
  12. targetCompatibility JavaVersion.VERSION_1_8
  13. }
  14. }
  15. dependencies {
  16. compileOnly("plus.reactivex.rxjava3:rxjava:3.1.6-SNAPSHOT")
  17. compileOnly("plus.reactivex.rxjava3:rxandroid:3.0.2-SNAPSHOT")
  18. api 'androidx.room:room-common:2.5.0'
  19. api 'androidx.room:room-runtime:2.5.0'
  20. }