You can simply put an entire JSONObject as a string. Something like this:
i.putString("product", jsonObj.toString);
And then in the MovieProductActivity
you could
JSONObject jsonObj = new JSONObject(getIntent().getStringExtra("product"));
You can simply put an entire JSONObject as a string. Something like this:
i.putString("product", jsonObj.toString);
And then in the MovieProductActivity
you could
JSONObject jsonObj = new JSONObject(getIntent().getStringExtra("product"));