I'm trying to figure out the best way to develop API for my iPhone and Android app with Parse.
Parse has separate iOS and Android SDKs that can create and modify objects. It's good choice, but then I'll have to send push notifications and it's obligatory to use Javascript Cloud for this case (as far as I understand).
So I'm thinking about using just Javascript Cloud as a wrapper and doing all things with data on Parse side (without using iOS or Android SDKs).
Does it seem like a good choice or I should dive deeper into native SDKs to eliminate server-side even if it's hosted on Parse?