0

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

Community
  • 1
  • 1
Dest
  • 1
  • 5

1 Answers1

1

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);
YesThatIsMyName
  • 1,585
  • 3
  • 23
  • 30
Berry Tao
  • 11
  • 1