build.gradle 569 B

1234567891011121314151617181920212223242526272829
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'com.github.dcendents.android-maven'
  3. group='shihoo.wang'
  4. android {
  5. compileSdkVersion 30
  6. defaultConfig {
  7. minSdkVersion 18
  8. targetSdkVersion 30
  9. versionCode 1
  10. versionName "1.0"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. api 'io.reactivex.rxjava2:rxjava:2.0.1'
  21. api 'com.android.support:support-annotations:+'
  22. }