After lot of googeling, I could not find any way to pass a object from one application to other application.Though I know that we can pass object from one activty to other activity using Parcel but how to do this between applications? My object is this
public class MyObject
{
private String name;
public String getName()
{
return this.name;
}
public void setName(String name)
{
this.name=name;
}
}
Then how to do this like we do for passing object between activities
intent.putExtra("key",new MyOject());