{"id":1108,"date":"2016-07-26T18:38:40","date_gmt":"2016-07-26T18:38:40","guid":{"rendered":"https:\/\/ionic.io\/blog\/?p=1108"},"modified":"2016-07-28T14:22:57","modified_gmt":"2016-07-28T14:22:57","slug":"ionic-native-native-powers-for-your-app","status":"publish","type":"post","link":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app","title":{"rendered":"Ionic Native: Native Powers for Your App"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"600\" data-src=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg\" alt=\"ionic-native-header\" class=\"alignnone size-full wp-image-1115 lazyload\" data-srcset=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg 1400w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header-300x129.jpg 300w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header-768x329.jpg 768w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header-1024x439.jpg 1024w\" data-sizes=\"auto, (max-width: 1400px) 100vw, 1400px\" src=\"data:image\/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\" style=\"--smush-placeholder-width: 1400px; --smush-placeholder-aspect-ratio: 1400\/600;\" \/><noscript><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"600\" src=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg\" alt=\"ionic-native-header\" class=\"alignnone size-full wp-image-1115\" srcset=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg 1400w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header-300x129.jpg 300w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header-768x329.jpg 768w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header-1024x439.jpg 1024w\" sizes=\"auto, (max-width: 1400px) 100vw, 1400px\" \/><\/noscript><\/p>\n<p>The very best mobile apps take full advantage of the amazing features available to them natively on iOS and Android devices. Whether that&#8217;s taking pictures, connecting to devices through bluetooth, using the accelerometer, or authenticating with finger scanning, apps need to do it all.<\/p>\n<p>One of the biggest myths about Cordova\/PhoneGap is that it can&#8217;t access the same native SDK features that a pure native app can. It&#8217;s patently untrue, but it&#8217;s such a common misconception that we&#8217;ve invested quite a bit of energy into projects and documentation to show Ionic developers that they have the full power of the Native SDKs at their fingertips.<\/p>\n<p>One of the reasons this misconception might exist is a lack of a central repository for all the available native plugins that Ionic\/Cordova\/PhoneGap developers can throw into their project. It&#8217;s hard to know what&#8217;s available when plugins are scattered about and only available through tedious digging through npm and GitHub repos.<\/p>\n<p><!--more--><\/p>\n<h3>Say hello to Ionic Native<\/h3>\n<p>A few months ago, we launched <a href=\"https:\/\/github.com\/driftyco\/ionic-native\">Ionic Native<\/a> both to solve the problem of finding the right native Cordova plugins your app needs and to make them easier to use and more consistent in their APIs. To that end, Ionic Native wraps each supported plugin with simple TypeScript decorators that add Promise, Observable, and Typing support to plugins that rarely support them by default. Additionally, Ionic Native makes each plugin available as a module that can be imported in any standard TypeScript or ES6+ project, and each plugin is given a consistent API and naming convention to avoid having to find your plugin instance on <code>window<\/code> or <code>navigator<\/code> or some other custom namespace.<\/p>\n<p>To top it off, Ionic Native comes with some nice debugging features to help you quickly figure out when a plugin was used but was not installed, or when Cordova is not available:<\/p>\n<p><a href=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/Screenshot-2016-07-26-13.31.19.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1404\" height=\"60\" data-src=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/Screenshot-2016-07-26-13.31.19.png\" alt=\"Screenshot 2016-07-26 13.31.19\" class=\"aligncenter size-full wp-image-1208 lazyload\" data-srcset=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/Screenshot-2016-07-26-13.31.19.png 1404w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/Screenshot-2016-07-26-13.31.19-300x13.png 300w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/Screenshot-2016-07-26-13.31.19-768x33.png 768w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/Screenshot-2016-07-26-13.31.19-1024x44.png 1024w\" data-sizes=\"auto, (max-width: 1404px) 100vw, 1404px\" src=\"data:image\/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\" style=\"--smush-placeholder-width: 1404px; --smush-placeholder-aspect-ratio: 1404\/60;\" \/><noscript><img loading=\"lazy\" decoding=\"async\" width=\"1404\" height=\"60\" src=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/Screenshot-2016-07-26-13.31.19.png\" alt=\"Screenshot 2016-07-26 13.31.19\" class=\"aligncenter size-full wp-image-1208\" srcset=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/Screenshot-2016-07-26-13.31.19.png 1404w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/Screenshot-2016-07-26-13.31.19-300x13.png 300w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/Screenshot-2016-07-26-13.31.19-768x33.png 768w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/Screenshot-2016-07-26-13.31.19-1024x44.png 1024w\" sizes=\"auto, (max-width: 1404px) 100vw, 1404px\" \/><\/noscript><\/a><\/p>\n<p>Today, we&#8217;re excited to announce the latest version of the project, <a href=\"https:\/\/github.com\/driftyco\/ionic-native\/releases\/tag\/v1.3.9\">Ionic Native 1.3.9<\/a>. Huge thanks to <a href=\"https:\/\/github.com\/ihadeed\">Ibrahim Hadeed<\/a>, who has become defacto maintainer of the project, for making this release happen. With his help, the project has grown from a meager 10 plugins to nearly 75 at today&#8217;s count. Both ngCordova and Ionic Native became major community efforts, and we are so thankful for Ibrahim&#8217;s awesome work on this project.<\/p>\n<h3>Moving on from ngCordova<\/h3>\n<p>For those in the community that have used our similar project for Angular 1, <a href=\"http:\/\/ngcordova.com\">ngCordova<\/a>, it&#8217;s now time to say good bye to that project. As of Ionic Native 1.3.0, Angular 1 is now supported out of the box, with practically identical service and API names as ngCordova. Plugin support is now on par or better than ngCordova, and we&#8217;re baking Ionic Native by default into all new Ionic 2 projects, so usage should be much higher than with ngCordova. Additionally, ngCordova was bound to Angular 1, and Ionic Native is framework agnostic.<\/p>\n<p>To start using Ionic Native in Ionic 1 projects, include the bundle file in the latest release, and change your import from <code>ngCordova<\/code> to <code>ionic.native<\/code>. Many calls should Just Work, but take a look at the <a href=\"http:\/\/ionicframework.com\/docs\/v2\/native\/\">docs<\/a> to see what needs to be changed. You&#8217;ll need to prefix each Class name with <code>$cordova<\/code> before injecting and calling it. For example: <code>$cordovaCamera.<\/code><\/p>\n<h3>Looking Ahead<\/h3>\n<p>One of the expressed goals of PhoneGap was to become irrelevant, to treat native functionality as if it was just a regular Web API, and then remove the native code as Web APIs caught up. As native functionality continues to proliferate, it&#8217;s becoming clear that web browsers have a lot of work to do to catch up to the same functionality available to native mobile app developers. Projects like PhoneGap and Cordova are more important than ever, as they continue to enable rapid and quality app development through web technologies we all love, while still offering the same native SDKs that app developers need.<\/p>\n<p>Our goal at Ionic is to continue to foster this incredible ecosystem through curation projects like Ionic Native, but also through development of our own Cordova plugins, like our new <a href=\"https:\/\/github.com\/driftyco\/ionic-plugin-deeplinks\">Deeplinking<\/a> plugin.<\/p>\n<p>We hope you enjoy Ionic Native and find it useful. Let us know what you think and, if you like it, send us some star power over at the <a href=\"https:\/\/github.com\/driftyco\/ionic-native\">Ionic Native GitHub repo<\/a>. Also, take a look at the new <a href=\"http:\/\/ionicframework.com\/docs\/v2\/native\/\">Ionic Native Docs<\/a> for a full sampling of all the native magic available.<\/p>\n<p><a href=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/giphy-1.gif\"><img loading=\"lazy\" decoding=\"async\" width=\"275\" height=\"252\" data-src=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/giphy-1.gif\" alt=\"giphy (1)\" class=\"aligncenter size-full wp-image-1219 lazyload\" src=\"data:image\/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\" style=\"--smush-placeholder-width: 275px; --smush-placeholder-aspect-ratio: 275\/252;\" \/><noscript><img loading=\"lazy\" decoding=\"async\" width=\"275\" height=\"252\" src=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/07\/giphy-1.gif\" alt=\"giphy (1)\" class=\"aligncenter size-full wp-image-1219\" \/><\/noscript><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The very best mobile apps take full advantage of the amazing features available to them natively on iOS and Android devices. Whether that&#8217;s taking pictures, connecting to devices through bluetooth, using the accelerometer, or authenticating with finger scanning, apps need to do it all. One of the biggest myths about Cordova\/PhoneGap is that it can&#8217;t [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"publish_to_discourse":"","publish_post_category":"","wpdc_auto_publish_overridden":"","wpdc_topic_tags":"","wpdc_pin_topic":"","wpdc_pin_until":"","discourse_post_id":"","discourse_permalink":"","wpdc_publishing_response":"","wpdc_publishing_error":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[28,3,13,27],"class_list":["post-1108","post","type-post","status-publish","format-standard","hentry","category-all","tag-cordova","tag-ionic","tag-ionic-2","tag-ionic-native"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.0 (Yoast SEO v23.0) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Ionic Native: Native Powers for Your App - Ionic Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ionic Native: Native Powers for Your App\" \/>\n<meta property=\"og:description\" content=\"The very best mobile apps take full advantage of the amazing features available to them natively on iOS and Android devices. Whether that&#8217;s taking pictures, connecting to devices through bluetooth, using the accelerometer, or authenticating with finger scanning, apps need to do it all. One of the biggest myths about Cordova\/PhoneGap is that it can&#8217;t [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app\" \/>\n<meta property=\"og:site_name\" content=\"Ionic Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-07-26T18:38:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-07-28T14:22:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg\" \/>\n<meta name=\"author\" content=\"Max Lynch\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@maxlynch\" \/>\n<meta name=\"twitter:site\" content=\"@ionicframework\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Max Lynch\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#article\",\"isPartOf\":{\"@id\":\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app\"},\"author\":{\"name\":\"Max Lynch\",\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/person\/91f360cffbd804a464b0c4a87b5c5f1e\"},\"headline\":\"Ionic Native: Native Powers for Your App\",\"datePublished\":\"2016-07-26T18:38:40+00:00\",\"dateModified\":\"2016-07-28T14:22:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app\"},\"wordCount\":736,\"commentCount\":16,\"publisher\":{\"@id\":\"https:\/\/ionic.io\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg\",\"keywords\":[\"Cordova\",\"Ionic\",\"Ionic 2\",\"Ionic Native\"],\"articleSection\":[\"All\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app\",\"url\":\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app\",\"name\":\"Ionic Native: Native Powers for Your App - Ionic Blog\",\"isPartOf\":{\"@id\":\"https:\/\/ionic.io\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#primaryimage\"},\"image\":{\"@id\":\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg\",\"datePublished\":\"2016-07-26T18:38:40+00:00\",\"dateModified\":\"2016-07-28T14:22:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#primaryimage\",\"url\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg\",\"contentUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg\",\"width\":1400,\"height\":600},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/ionic.io\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ionic Native: Native Powers for Your App\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/ionic.io\/blog\/#website\",\"url\":\"https:\/\/ionic.io\/blog\/\",\"name\":\"ionic.io\/blog\",\"description\":\"Build amazing native and progressive web apps with the web\",\"publisher\":{\"@id\":\"https:\/\/ionic.io\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/ionic.io\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/ionic.io\/blog\/#organization\",\"name\":\"Ionic\",\"url\":\"https:\/\/ionic.io\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2020\/10\/white-on-color.png\",\"contentUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2020\/10\/white-on-color.png\",\"width\":1920,\"height\":854,\"caption\":\"Ionic\"},\"image\":{\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/ionicframework\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/person\/91f360cffbd804a464b0c4a87b5c5f1e\",\"name\":\"Max Lynch\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2018\/05\/max-avatar-150x150.jpg\",\"contentUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2018\/05\/max-avatar-150x150.jpg\",\"caption\":\"Max Lynch\"},\"description\":\"CEO\",\"sameAs\":[\"http:\/\/twitter.com\/maxlynch\",\"https:\/\/x.com\/maxlynch\"],\"url\":\"https:\/\/ionic.io\/blog\/author\/max\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Ionic Native: Native Powers for Your App - Ionic Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app","og_locale":"en_US","og_type":"article","og_title":"Ionic Native: Native Powers for Your App","og_description":"The very best mobile apps take full advantage of the amazing features available to them natively on iOS and Android devices. Whether that&#8217;s taking pictures, connecting to devices through bluetooth, using the accelerometer, or authenticating with finger scanning, apps need to do it all. One of the biggest myths about Cordova\/PhoneGap is that it can&#8217;t [&hellip;]","og_url":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app","og_site_name":"Ionic Blog","article_published_time":"2016-07-26T18:38:40+00:00","article_modified_time":"2016-07-28T14:22:57+00:00","og_image":[{"url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg"}],"author":"Max Lynch","twitter_card":"summary_large_image","twitter_creator":"@maxlynch","twitter_site":"@ionicframework","twitter_misc":{"Written by":"Max Lynch","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#article","isPartOf":{"@id":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app"},"author":{"name":"Max Lynch","@id":"https:\/\/ionic.io\/blog\/#\/schema\/person\/91f360cffbd804a464b0c4a87b5c5f1e"},"headline":"Ionic Native: Native Powers for Your App","datePublished":"2016-07-26T18:38:40+00:00","dateModified":"2016-07-28T14:22:57+00:00","mainEntityOfPage":{"@id":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app"},"wordCount":736,"commentCount":16,"publisher":{"@id":"https:\/\/ionic.io\/blog\/#organization"},"image":{"@id":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#primaryimage"},"thumbnailUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg","keywords":["Cordova","Ionic","Ionic 2","Ionic Native"],"articleSection":["All"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app","url":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app","name":"Ionic Native: Native Powers for Your App - Ionic Blog","isPartOf":{"@id":"https:\/\/ionic.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#primaryimage"},"image":{"@id":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#primaryimage"},"thumbnailUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg","datePublished":"2016-07-26T18:38:40+00:00","dateModified":"2016-07-28T14:22:57+00:00","breadcrumb":{"@id":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#primaryimage","url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg","contentUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2016\/06\/ionic-native-header.jpg","width":1400,"height":600},{"@type":"BreadcrumbList","@id":"https:\/\/ionic.io\/blog\/ionic-native-native-powers-for-your-app#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ionic.io\/blog"},{"@type":"ListItem","position":2,"name":"Ionic Native: Native Powers for Your App"}]},{"@type":"WebSite","@id":"https:\/\/ionic.io\/blog\/#website","url":"https:\/\/ionic.io\/blog\/","name":"ionic.io\/blog","description":"Build amazing native and progressive web apps with the web","publisher":{"@id":"https:\/\/ionic.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ionic.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/ionic.io\/blog\/#organization","name":"Ionic","url":"https:\/\/ionic.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ionic.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2020\/10\/white-on-color.png","contentUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2020\/10\/white-on-color.png","width":1920,"height":854,"caption":"Ionic"},"image":{"@id":"https:\/\/ionic.io\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/ionicframework"]},{"@type":"Person","@id":"https:\/\/ionic.io\/blog\/#\/schema\/person\/91f360cffbd804a464b0c4a87b5c5f1e","name":"Max Lynch","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ionic.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2018\/05\/max-avatar-150x150.jpg","contentUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2018\/05\/max-avatar-150x150.jpg","caption":"Max Lynch"},"description":"CEO","sameAs":["http:\/\/twitter.com\/maxlynch","https:\/\/x.com\/maxlynch"],"url":"https:\/\/ionic.io\/blog\/author\/max"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/posts\/1108","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/comments?post=1108"}],"version-history":[{"count":0,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/posts\/1108\/revisions"}],"wp:attachment":[{"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/media?parent=1108"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/categories?post=1108"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/tags?post=1108"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}