terminate called after throwing an instance of 'std::logic_error' [aidl] what(): basic_string

原文链接


使用ant编译android程序时,报错如下

[java]  view plain copy
  1. [aidl] terminate called after throwing an instance of 'std::logic_error'  
  2. [aidl] what(): basic_string::_S_construct null not valid  

解决方法:

请检查你的 src/**/*.aidl 中是否缺少一行 "package xxx.yyy.zzz;"。

 

问题总结:

代码中小小的Bug,花费了整整一天多的时间去排查,可见代码审查是多么的重要。。

你可能感兴趣的:(android,aidl)