With all the development in the Hybrid apps field the lasts couple of years (like Ionic and ngCordova) I was wondering: What can you do with native apps that you can't do with hybrid apps?
I know that there are some native features that are exclusive for a single operating system like Multipeer Connectivity on iOS.
Could someone provide a list of features that are exclusive to Android and iOS or maybe a Android vs iOS vs Ionic feature comparison?
Ionic is based on Cordova/PhoneGap which uses WebViews. I'll try to answer the more general part of what can you not do with hybrid apps or more exactly, example of things that seem impossible using a WebView:
As said, there are many things that are iOS-only or Android-only but those are almost always only because no one made the plugin for the other platform.
Building native applications means using the native language of the platform, Objective-C on iOS, and Java on Android. The main advantage of native applications is their performance. Native apps are compiled into machine code (Dalvik byte code under Android), which gives the best performance you can get from the mobile phone.
Best performance includes fast and fluid animations as well as full access to phone hardware, multi touch support and the latest APIs.