build.gradle 673 B

12345678910111213141516171819202122232425262728293031
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. namespace 'com.norman.webviewup.lib'
  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. implementation 'androidx.appcompat:appcompat:1.6.1'
  25. }
  26. apply from: "../publish.gradle"