I am using APN in my app and I was wondering - what if I add a new type of notification and send new STRING_KEY in the JSON - I update my app but, let's assume that 30% of my user base doesn't update immediately. Logically - they will receive the push notification without the "new type" included and therefore instead of:
Localized.strings:
"STRING_KEY" = "This is the new string.";
displaying the text above, the notification will be displayed as "STRING_KEY".
Is there any best-practice approach, or "conditional string", or pre-handle method for displaying the message in push notification?