【Android】ant编译aidl的错误

使用ant编译Android应用程序工程时,出现的错误:

错误信息(Cygwin):

[aidl] This application has requested the Runtime to terminate it in an unusual way. 
[aidl] Please contact the application's support team for more information.

错误信息(Linux):

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

解决方法:

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

问题总结:

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

原文地址:https://www.cnblogs.com/scue/p/3615954.html