我需要在 Android 服务和客户端之间传输字节数组。我试图定义一个aidl接口,如:
interface IMyService {
int putBytes(String key, in List<Byte> bytes);
int getBytes(String key, out List<Byte> bytes);
}
但是,它不编译。错误是:
[aidl] E:\workspace\RAMService\src\com\connexis\service\mem\IRAMService.aid
l:14 parameter bytes (2) unknown type List<Byte>
有人可以帮助我吗?提前致谢!