<meta-data
android:name="com.parse.push.gcm_sender_id"
android:value="id:763300773243" />
3.Also save sender id in parse Installation table
4.Created GCM push receiver class as well.
ParseInstallation parseIns = ParseInstallation.getCurrentInstallation();parseIns.put("GCMSenderId", "763300773243");parseIns.save();But not receiving any push notification in android app.can anyone help for this?Does anyone receiving push from sent from back4app?
Parse.Push.send({
where: query, // Set our Installation query
data: {
alert: 'your message goes here'
}
}, { useMasterKey:true,
success: function() {
// Push was successful
console.log("Push Successful", Date.now());
},
error: function(error) {
// Handle error
console.log("Push fail", Date.now());
}
});
});
Push for kindle is not yet available.
Best.