I'm trying to get the return of a push in android through the Bundle, however I'm having some problem performing bundle.getString("Message");
because it does not get all my answer that is in JSON format, it follows the format of the message: / p>
Message=[
{
"Key": "type",
"Value": "0"
},
{
"Key": "msg",
"Value": "valor"
}
]
bundle.getString("Message");
for me the answer only until.
[
{
"Key": "type"
The rest is ignored. Any idea what this problem might be?