-1

I understand that through AIDL inter-app communication is possible in Android. You can pass primitives and custom objects that implement Parcelable interface. But, can App A pass it's activity reference to App B as a Parameter to an AIDL API (for example void foo(Activity reference)). And then app B use the reference? Will it be pass by value or reference?

Sai
  • 2,089
  • 3
  • 19
  • 30

1 Answers1

1

Can you pass Activity to another app through IPC/AIDL?

No.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491