> For the complete documentation index, see [llms.txt](https://notes.tejpratapsingh.com/_/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notes.tejpratapsingh.com/_/android-tips/aidl/aidl-with-callback.md).

# AIDL with callback

Please go trough [Simple AIDL Communication](/_/android-tips/aidl/simple-aidl-communication.md) before reading this.

AIDL will callback will need one more corresponding `aidl` file, `ICallback.aidl`, which contains callback methods. You can directly use callback object from server to directly connect with client (reverse communication, from `server` to `client`).

Example Application:

{% embed url="<https://github.com/tejpratap46/AIDL-Example/tree/main>" %}
