I’m writing a client plugin to an AIDL service. In my plugin I need to call bindService(…), but this requires that my plugin extend a subclass of android.content.Context.
The AIDL service just does some computation and returns the results, so it has no UI. If not Activity, what should I be extending? UnityPlayerActivity?
Thanks for reading!