Creating an AIDL file
an .aidl file is a barebone description of set of API's server exposes
buildFeatures { aidl = true }interface IExampleAidlInterface { int add(int a, int b); }
Last updated
an .aidl file is a barebone description of set of API's server exposes
buildFeatures {
aidl = true
} interface IExampleAidlInterface {
int add(int a, int b);
}Last updated