I have created Intent and I put data using putExtra
method.
Now I want to put my geoPointsArray
type variable to my intent object, here is type of geoPointsArray :
List<GeoPoint> geoPointsArray = new ArrayList<GeoPoint>();
In existing methods putExtra
I can't find how to put my custom type.
Can someone help me with this?
Thanks