ARouter icon indicating copy to clipboard operation
ARouter copied to clipboard

💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架)

Results 140 ARouter issues
Sort by recently updated
recently updated
newest added

public void process(Postcard postcard, InterceptorCallback callback) { String path = postcard.getPath(); if (postcard.getExtra() == Configs.NEED_LOGIN_INTERCEPTOR) { if (LoginUtils.isLogin()) { callback.onContinue(postcard); }else { LogUtils.e("LoginInterceptor","拦截" + path); ARouter.getInstance().build(MyRouter.LOGIN_ACTIVITY).navigation(context, new NavigationCallback() { @Override...

private static void checkInterceptorsInitStatus() { synchronized (interceptorInitLock) { while (!interceptorHasInit) { try { interceptorInitLock.wait(10 * 1000); } catch (InterruptedException e) { throw new HandlerException(TAG + "Interceptor init cost too much...

## Look at here - → Did you read the doc carefully - → Did you add annotation above target activity - → Did you add annotation processor dependence -...

AS导航跳转插件:ARouter Helper 在Kotlin代码中,无法显示跳转图标和点击跳转到目标类,在Java中正常 AS版本:3.2.1 插件版本:1.0.0

enhancement (新需求)

https://www.aipiti.cn/read/4e26dbd2-97d8-11e9-b583-525400bcb43b 文章中的问题我也遇到了,Postcard.timeOut改成小点,就可以修复了,这里的原理是啥, 修改timeOut是否会有问题?是否有更好解决方案?

建议: 1、frament的startActivityForResult的支持 2、希望增加一个检查当前APP中路由表中是否存在某个路由 在跳转之前就能检查,而不是跳转后后监听onLoast或者报错信息

我具体是这样做的 有一个library叫做common依赖arouter 然后 有一个module叫login依赖common 然后主app依赖login 没有依赖其他 请问我应该怎样使用

![image](https://user-images.githubusercontent.com/23716013/110726768-fa1cfe80-8254-11eb-9899-04e8132be799.png) 这样简单的操作 就发现参数roomId为0 或者丢失了 我们自己测试没有发现 线上用户拉取的日志看到的

ARouter.getInstance().build("/xxx/xxxxx").navigation(getActivity(),100) 在fragment中跳转后,onActivityResult没有被调用 建议修复一下关于fragment的内容