Reputation: 1
I changed the android package by this method,
and now I get an error
Process 'command 'D:\Android\android-sdk\build-tools\28.0.3\aidl.exe'' finished with non-zero exit value 1
How i can fix this?
Build -> Clean project
Build -> Rebuild project
is not working
Upvotes: 0
Views: 2312
Reputation: 11
1.Make sure your aidl file is in package like:
com.xxx.xxx.xxx.aidl
2.If your aidl file contains List, please use it like this:
void setResouces(in List<String> paths);
Upvotes: 1