Reputation: 5363
I want to pass Object
from App1, App2, App3 --> AppG
. In particular:
App1, App2, App3
can secure save Object
.
AppG
can read this Object
and do stuff.
I read about ContentProvider, Meta-Data, Parcelable, SharedPref
and so on but nothing do what I need, some of those required app signed with same key, other hasn't safe.
Upvotes: 2
Views: 100
Reputation: 6392
There are a lot of ways to communicate between two apps but if you need:
OnClickListener
) over IPC.There are much less options that will work for you, follow the next steps:
Object
between processes implement the Parcel
class.Upvotes: 2