build.gradle.kts 493 B

123456789101112131415161718192021222324252627
  1. plugins {
  2. id("com.android.library")
  3. }
  4. // 使用自定义插件
  5. apply<DefaultGradlePlugin>()
  6. android {
  7. namespace = "com.android.basiclib"
  8. }
  9. dependencies {
  10. //限制范围,使用引擎类封装使用
  11. retrofit()
  12. dataStore()
  13. imageSelector()
  14. xpopup()
  15. glide()
  16. implementation(VersionThirdPart.toaster)
  17. implementation(VersionThirdPart.xxPermission)
  18. //不限制范围,全局使用
  19. // refresh()
  20. // work()
  21. api(VersionThirdPart.liveEventBus)
  22. }