As it'is written in the title I want share a variable between the activities A and C without retrieving this variable in activity B ? is it possible ?
I want to have something like that :
Intent intent = new Intent(A.this,C.class);
intent.putExtra(variableA, variableC);
... (what should I write here)
Actually My App is doing that :
Intent intent = new Intent(A.this, B.class);
startActivity(intent);
Thank you for your help