I'm trying to pass an object by parameter, but an error occurs in the line "it.putExtra (" tag ", obj);":
Can not resolve method (java.lang.String, my package.minhaClasse)
Follow the code
Obj obj = new Obj();
Intent it;
it = new Intent(this, MinhaClasse.class);
it.putExtra("tag", obj);
startActivity(it);
Another question, how to retrieve this object in the other Activity?