build.gradle 861 B

123456789101112131415161718192021222324252627282930313233343536
  1. apply plugin: 'com.android.library'
  2. //apply from: 'bintray.gradle'
  3. android {
  4. compileSdkVersion 29
  5. buildToolsVersion "30.0.3"
  6. defaultConfig {
  7. minSdkVersion 16
  8. targetSdkVersion 29
  9. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. namespace 'com.king.view.arcseekbar'
  18. lint {
  19. abortOnError false
  20. warning 'InvalidPackage'
  21. }
  22. }
  23. dependencies {
  24. implementation fileTree(dir: 'libs', include: ['*.jar'])
  25. testImplementation "androidx.test.ext:junit:1.1.1"
  26. androidTestImplementation "androidx.test:runner:1.2.0"
  27. androidTestImplementation "androidx.test.espresso:espresso-core:3.2.0"
  28. }