美文网首页
android组件化

android组件化

作者: 小螃蟹_9a64 | 来源:发表于2022-03-25 23:37 被阅读0次

    组件化插件:
    arouter:复杂,路由模式偶尔会找不到。
    cc:根据String来判断,没有编译时校验。
    autoService:接口下沉,只用一个注解,使用方便。

    module:
    base:不变
    common:基本不变
    各个功能组件模块

    autoSercice的使用步骤:
    1.添加依赖
    annotationProcessor 'com.google.auto.service:auto-service:1.0-rc7'
    implementation 'com.google.auto.service:auto-service:1.0-rc7'
    2.common层新建组件接口
    3.base层新建AutoServiceLoader类
    4.对应组件曾实现

    相关文章

      网友评论

          本文标题:android组件化

          本文链接:https://www.haomeiwen.com/subject/mbljjrtx.html