InterfaceLoader icon indicating copy to clipboard operation
InterfaceLoader copied to clipboard

史上最好用的Android跨进程接口调用框架

Results 4 InterfaceLoader issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/8265300/100973255-31ed1980-3575-11eb-95c7-2051555078c7.png) 新建了一个自定义类型,实现了Parcelable接口 public interface ILoaderDemo { int plus(int a, int b); int minus(user user); int multi(int a, int b); } 接口修改成自定义类型后LoaderDemoService就会报找不到 user classnotfound异常。 ![image](https://user-images.githubusercontent.com/8265300/100973520-a7f18080-3575-11eb-9905-4d338c4d06f0.png) 本人测试把InterfaceService里的获取参数方法里ClassLoader获取换成传递进来implement后运行就正常了。

你好,请问一下该库实际能解决那些问题,方便展开讲讲吗?

目前的ILoaderDemo 是直接返回结果,是否可以尝试通过接口返回?