build.gradle 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. compileSdkVersion 30
  6. defaultConfig {
  7. minSdkVersion 14
  8. targetSdkVersion 30
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. consumerProguardFiles "consumer-rules.pro"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. compileOptions {
  21. sourceCompatibility JavaVersion.VERSION_1_8
  22. targetCompatibility JavaVersion.VERSION_1_8
  23. }
  24. }
  25. dependencies {
  26. implementation 'androidx.appcompat:appcompat:1.2.0'
  27. implementation 'com.google.android.material:material:1.3.0'
  28. testImplementation 'junit:junit:4.13.2'
  29. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  30. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  31. api 'com.yanyi.benyanyi:Logger:1.0.5'
  32. api 'com.yanyi.benyanyi:PermissionHelper:1.1.4'
  33. api 'com.yanyi.benyanyi:BindView:1.1.0'
  34. api 'com.yanyi.benyanyi:okhttplib:2.0.8'
  35. api 'com.yanyi.benyanyi:BasicView:1.1.3'
  36. api 'com.yanyi.benyanyi:basesqlite:1.1.6'
  37. api 'com.yanyi.benyanyi:floatinginputbox:1.0.5'
  38. api 'com.yanyi.benyanyi:picker:1.0.8'
  39. api 'com.yanyi.benyanyi:DateSelect:1.0.4-base1'
  40. }
  41. apply from: 'bintrayUpload.gradle'