java.lang.SecurityException: Binder invocation to an incorrect interface报错问题

时间:2022-10-11 22:55:27

今天在了解AIDL时遇到了如下问题:

aidl客户端写好后,调试运行时,报错:java.lang.SecurityException: Binder invocation to an incorrect interface

这是因为我在写aidl客户端代码时,直接将服务端的aidl文件copy过来,放在客户端的包下,把aidl包名改了,然后再运行,发现会报错。上网一查,才明白原因:客户端的aidl文件包名要与服务端的包名一样,即如下图所示:java.lang.SecurityException: Binder invocation to an incorrect interface报错问题

只要将这俩者包名修改为一致,就不会报错了。