Is there a way to have gradle generate the headers + implementation of an AIDL file for native code (android NDK)? I followed the instructions here (https://developer.android.com/guide/components/aidl) but this only generates code for java/kotlin code. It doesn't generate anything for native code (c++).
I was able to generate the headers + implementation manually using the "aidl" tool as described here (https://source.android.com/devices/architecture/aidl/aidl-backends) but I was hoping there was a way to do this through gradle so that this is taken care of for me.
Thanks!