Poll: HTML 5 or Native mobile development ?
81–90 of 106 posts
Re: Poll: HTML 5 or Native mobile development ?
#82There is a lot of tips and trick to get the native feeling. I just think that you should give HTML5 a chance and not out rule it.
Re: Poll: HTML 5 or Native mobile development ?
#83Earlier quoted context omitted.
fb.html5isready.com
fastbkapp will receive the following info: your public profile, friend list, email address, custom friends lists, messages, friend requests, News Feed, relationships, relationship interests, birthday, chat status, notes, work history, status updates, education history, events, groups, hometown, interests, current city, Photos, religious and political views, videos, website, personal description and likes and your fri…
Re: Poll: HTML 5 or Native mobile development ?
#84Many there comment that developing with HTML is faster. This is true only and only when you are not familiar with the native language and frameworks. Really, native SDKs have solved pretty much all the common problems. With native you implement the functionality of your app, and don't have to invent views management, list views, notifications, events management, gesture recognisers, etc. There was a post (by sencha,…
Another possibility is: browsers are advanced enough to allow web apps to be possible, and as such, options other than native apps become available. Products requirements vary, and so do the devices you deploy to. There are a myriad other reasons one may weight the options and decide to develop a web app other than being lazy.
> I don't see similar push for desktop apps
I dunno. I use a number of web apps on a regular basis, Rdio being the closest thing to a native app I've used (I run it via Fluid to remove some cognitive gaps). Also, what about Chromebooks? Google's been aggressively pushing that. I think it just may be that more apps get developed for mobile, period, and as such the degree of interest in mobile web apps seems higher (which is ironic given how much easier it is to develop smooth web-based UX for desktop).
Re: Poll: HTML 5 or Native mobile development ?
#85If facebook's HTML5 fiasco is any lesson, I would rather go with Native.
Re: Poll: HTML 5 or Native mobile development ?
#86Always goes only for native. Here're why I don't go HTML5. (1) Access to low-level and platform-specific features. Whatever I do, I always eventually need it as program gets specialized, and always be frustrated on non-native platforms. Usually cross platform stuffs lack this or needlessly painful even they offer it. Also you still have to write platform specific code even they support it. (2) Freedom of development.…
> There's no computing platform doesn't support C/C++ Does that include Android devices?
Re: Poll: HTML 5 or Native mobile development ?
#87How about kivy ( http://kivy.org/#home ) for something of a middle ground? It's a python graphical framework making heavy use of opengl via an optimised cython interface. It has fairly powerful access to the android api through pyjnius (which gives direct access to java classes) or pyobjus on ios (which is less mature but has the same idea). On the plus side, since it's native to the device (albeit with a different i…
The biggest downside I found with kivy is the amount of time it takes to launch the app as it has to set up the python environment et al. If that's improved with newer versions of kivy I might go back to see what it can do.
Re: Poll: HTML 5 or Native mobile development ?
#88What would the result be if you got 2 developers, 1 with 5 years experience building HTML5 apps and 1 with 5 years building native apps, and gave them 3 months to create an apps for Android and iOS?
Re: Poll: HTML 5 or Native mobile development ?
#89HTML5 is designed to run in a browser which is always on. Native development is designed so that the user can switch betweens apps easily, without having an app to be slow. Also with native you have access to the full device api such as sensors. HTML5 is closing the gap, but Native increases the gap every few months. Mind the gap.
2. Use Page Visibility API[0] to throttle app.
I'm frankly just unclear on why so many of us are answering the question "What works...?" when clearly the question is "Which do you PREFER?"
Re: Poll: HTML 5 or Native mobile development ?
#90tl;dr: If you can, go native all the way, but if it makes a lot of sense from biz perspective to support platforms other than iOS, HTML5 is not as bad as it seems. I recently made an app for http://productivemag.com (for iOS and soon Android) using web tech, but I also have experience in native iOS/OSX dev. I use Cordova as a wrapper around HTML5. My conclusions: - HTML5 is great for custom UI and prototyping. You ca…
I'd still pick native any day. Control > ease.