Can i able to use the AIDL interface to communicate with the localservice within same package in android? without penalty?
Asked
Active
Viewed 160 times
0
-
yes, drawback : it will go through RPC even if it could not – Selvin Apr 13 '18 at 12:53
-
AIDL when used locally does NOT do any RPC @Selvin – pskink Apr 13 '18 at 13:04
-
If so,then it is possible to use AIDL interface to communicate with local service (in 'xyz' package) with my client component such as 'Acitivty' (in same 'xyz' package) without any additional overhead? @pskink – Muthu Sanjeevi Apr 13 '18 at 13:17
-
no need to change your code, no matter if it is remote call or local one – pskink Apr 14 '18 at 06:52