iqiyi/Andromeda

框架不支持跨APP访问吗?

kigkrazy opened this issue · 3 comments

android 5.x系统
跨APP时候访问:

        IBinder binder = Andromeda.with(baseActivity).getRemoteService(IZookeeperMgr.class);//一直是NULL
        if (binder == null) {
            return;
        }
        IZookeeperMgr zookeeperMgr = IZookeeperMgr.Stub.asInterface(binder);
        if (zookeeperMgr == null) {
            return;
        }
        try {
            String ss = zookeeperMgr.testInf();
            AresMgrLog.d("the test inf : " + ss);
        } catch (RemoteException ex) {
            ex.printStackTrace();
        }

此处一直返回NULL,然后我在当期APP访问正常

一开始设计时就不是给跨App访问使用的,所以我没有测试过跨App访问

了解谢谢···
我这边测试过是不能的····

嗯,我后面看时间决定是否增加跨App访问的能力