What is a AIDL File Type?
AIDL is an implementation of the IPC (interprocess communication protocol) provided by Android. It allows an application to communicate with another application running in a different process. AIDL was developed to reduce the time required for developers who would otherwise have to create code to direct objects to-beyond the process boundaries.
Once you have created the AIDL file you should save your AIDL file to the src / directory of your project. When building your application, an IBinder file, interface with a .java ", extension will be generated in your project, gen / directory. The name of the .JAVA file will be the same as the AIDL file from which it was created.
What is a Default AIDL File Name?
IInAppBillingService.aidl - L' Open source Android interface in-app billing (IAB) provided by Google to incorporate in-app billing in your application.