build.gradle 714 B

12345678910111213141516171819202122232425262728293031
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. namespace 'com.norman.webviewup.lib.source.download'
  6. defaultConfig {
  7. compileSdk 33
  8. minSdkVersion 21
  9. targetSdkVersion 33
  10. consumerProguardFiles "consumer-rules.pro"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. compileOptions {
  19. sourceCompatibility JavaVersion.VERSION_1_8
  20. targetCompatibility JavaVersion.VERSION_1_8
  21. }
  22. }
  23. dependencies {
  24. compileOnly project(":core")
  25. implementation 'me.laoyuyu.aria:core:3.8.16'
  26. }
  27. apply from: "../publish.gradle"