【发布时间】:2019-06-20 08:33:45
【问题描述】:
我通过这个method更改了android包,
现在我得到一个错误
Process 'command 'D:\Android\android-sdk\build-tools\28.0.3\aidl.exe'' 以非零退出值 1 结束
我该如何解决这个问题?
-
构建 -> 清理项目
-
构建 -> 重建项目
不工作
【问题讨论】:
标签: android-studio gradle
我通过这个method更改了android包,
现在我得到一个错误
Process 'command 'D:\Android\android-sdk\build-tools\28.0.3\aidl.exe'' 以非零退出值 1 结束
我该如何解决这个问题?
构建 -> 清理项目
构建 -> 重建项目
不工作
【问题讨论】:
标签: android-studio gradle
1.确保您的aidl文件在如下包中:
com.xxx.xxx.xxx.aidl
2.如果你的aidl文件包含List,请这样使用:
void setResouces(in List<String> paths);
【讨论】: