AIDL执行build 报错
2016-12-06 本文已影响39人
RoboyCore
aidl 里头定义的接口 是不支持重载的
interface IMyMsgSQL {
//查询
String queryPage(int page, int count);//方法名相同会报错
String query();
//新增
long insert(String msg);
int update(int id, String msg);
int delete(int id);
}