123456789101112131415161718192021222324252627 |
- plugins {
- id("com.android.library")
- }
- // 使用自定义插件
- apply<DefaultGradlePlugin>()
- android {
- namespace = "com.android.basiclib"
- }
- dependencies {
- //限制范围,使用引擎类封装使用
- retrofit()
- dataStore()
- imageSelector()
- xpopup()
- glide()
- implementation(VersionThirdPart.toaster)
- implementation(VersionThirdPart.xxPermission)
- //不限制范围,全局使用
- // refresh()
- // work()
- api(VersionThirdPart.liveEventBus)
- }
|