build.gradle 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion build_versions.target_sdk
  4. defaultConfig {
  5. minSdkVersion build_versions.min_sdk
  6. targetSdkVersion build_versions.target_sdk
  7. versionCode 1
  8. versionName "1.0"
  9. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. }
  15. debug {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21. dependencies {
  22. //implementation fileTree(include: ['*.jar'], dir: 'libs')
  23. implementation 'androidx.appcompat:appcompat:1.2.0'
  24. testImplementation 'junit:junit:4.12'
  25. androidTestImplementation 'androidx.test:runner:1.2.0'
  26. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  27. implementation deps.rxjava2
  28. implementation deps.rx_android
  29. implementation "org.reactivestreams:reactive-streams:1.0.3"
  30. }