disclaimer: this question is not much about gideros, but perhaps you can help me out, so let me ask it anyway.
a friend of mine wants an app for android+ios that feeds news about his club (posts with news, photos, videos), with push-notifications.
so basically it is like an app that shows a given facebook page or blog, but as a 'native' app, with the addition that you can push whatever notification you like.
what sdk do you recommend for this? i'm only familiar with gideros, but it definitely seems to be not the right choice for this. any html5-based cross-platform sdk? as i have only vague ideas about these and don't have much time to try each sdk one by one, i ask your help.
thanks
Comments
#MakeABetterGame! "Never give up, Never NEVER give up!" - Winston Churchill
-first is there any easy way to visualize html data in gideros? or should i make custom http requests, e.g. for videos i should send the screenshot of the video plus a link to the video itself and then by clicking in the app one can open the video? for text, i should just send the text and then format it manually within gideros?
-about push notifications, what third party apps are tested with gideros?
-all the above if you have examples/resources/links, i will be glad to have them.
thanks
Fragmenter - animated loop machine and IKONOMIKON - the memory game
for all these reasons i might believe that there is an sdk aimed for such particular use.
Fragmenter - animated loop machine and IKONOMIKON - the memory game
If you meant retrieving list of new items through HTTP, then nothing more is needed, I thought you meant the push notifications, that are sent to apple/android servers and then directed to specific mobile phones that has the app installed and are subscribed to listening service.
The only thing is basically a webview to render HTML inside it, which for now can be used through plugins.
As for rendering content, if (again using Wax) you create a HTML view then you could just pass in the source (for remote pages this doesn't actually work as well as you'd hope), alternatively you'd have to parse the content yourself (which is actually very easy to do in lua if you know the page structure) and then just render the results - this gives a much nicer, cleaner finish that's much easier to control and validate.
I've rendered pages made up from twitter feeds, rss, as well as random html pages containing product descriptions, including remotely loaded images. When you make a http request to a page, you literally get returned the same HTML string that the browser would see, just extract the relevant info using the lua string library and create appropriate instances of child objects (text, image etc).
One tip though - You'll probably want to come up with your own scroll view widget so you can deal with content that's bigger than the screen.
#MakeABetterGame! "Never give up, Never NEVER give up!" - Winston Churchill
about push notifications i meant what it means usually, although parallelly i was asking about getting updates from html. about push, i thought that it can be made without any service, like the app stays resident in the background and checks for news regularly in some way and if there is any updates then shows a pop-up notification about it. but it seems that it does not work like this? (then why are many of my apps resident on android, instead of one 'push notification' process?) so i don't understand completely how it works but so far i've found some html5 based thing which may do the stuff i need maybe more easily then i could do in gideros.
still, it is just theoretical and only after one day of looking into it.
thanks for the ideas so far.
Fragmenter - animated loop machine and IKONOMIKON - the memory game
i think i read somewhere that count.ly will support cross platform push-notification?
http://www.nightspade.com