build.gradle 507 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (C) 2016 Facishare Technology Co., Ltd. All Rights Reserved.
  3. */
  4. apply plugin: 'com.android.library'
  5. android {
  6. compileSdkVersion 34
  7. defaultConfig {
  8. minSdkVersion 19
  9. targetSdkVersion 32
  10. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. }