前言

对 ARouter 封装和 ActivityResultApi 封装汇总,ARouter封装ActivityResultAPi 功能有类似的地方,都有跳转回调相关的方法,不过 ARouter 更偏向于组件间跳转,而 ActivityResultApi 除了跳转外,还有请求权限相关功能及谷歌新增获取联系人等方法,两个博客里面都有详细介绍,这篇主要是介绍如何导入。

两个都导入

最新版:
ARouter 和 ActivityResultApi 封装 - 图1

  1. Add it in your root build.gradle at the end of repositories:
  2. allprojects {
  3. repositories {
  4. ...
  5. maven { url 'https://www.jitpack.io' }
  6. }
  7. }
  8. Step 2. Add the dependency
  9. dependencies {
  10. implementation 'com.gitee.quetzalcoatl.ActivityResultApi:0.0.4'
  11. }

只导入一个

  • ARouter

    1. implementation 'com.gitee.quetzalcoatl.ActivityResultApi:arouter:0.0.4'
  • ActivityResultAPi

    1. implementation 'com.gitee.quetzalcoatl.ActivityResultApi:api:0.0.4'

    地址

    项目地址