android - can we call AIDL From remote device -
can call client aidl interface device. , if yes how? if no exact use of aidl in android suggestions appreciated. regards sumit
can call client aidl interface device
no.
what exact use of aidl in android
quoting the documentation, "it allows define programming interface both client , service agree upon in order communicate each other using interprocess communication (ipc)." app developer, use when implementing binding pattern services (e.g., bindservice()
, onbind()
) between apps.
Comments
Post a Comment