Dest
Dest

Reputation: 1

Process 'command '28.0.3\aidl.exe'' finished with non-zero exit value 1 after changing android package

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?

  1. Build -> Clean project

  2. Build -> Rebuild project

    is not working

Upvotes: 0

Views: 2312

Answers (1)

Berry Tao
Berry Tao

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

Related Questions