{"id":7918,"date":"2023-10-12T09:36:14","date_gmt":"2023-10-12T04:06:14","guid":{"rendered":"https:\/\/innovationm.co\/?p=7918"},"modified":"2023-10-12T10:00:33","modified_gmt":"2023-10-12T04:30:33","slug":"integrate-flutter-app-native-android-app","status":"publish","type":"post","link":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/","title":{"rendered":"Integrate Flutter app in native Android app"},"content":{"rendered":"<p><span style=\"font-weight: 400;\">One way to achieve this is by seamlessly integrating a Flutter app into a native Android application. In this article, we&#8217;ll delve into the process of integrating a Flutter module into a native Android app, step by step.<\/span><\/p>\n<h2><strong>Step 1: Creating your Flutter Module<\/strong><\/h2>\n<p><span style=\"font-weight: 400;\">Let&#8217;s dive right into the process. The initial step involves creating your Flutter project as a module. Here&#8217;s how you can do it:<\/span><\/p>\n<ol>\n<li><span style=\"font-weight: 400;\"> Open your terminal and navigate to the desired location using the command:\u00a0<\/span><\/li>\n<\/ol>\n<pre><span style=\"font-weight: 400;\">```<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0<\/span> <span style=\"font-weight: 400;\">$ cd some\/path\/<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0<\/span> <span style=\"font-weight: 400;\">```<\/span><\/pre>\n<ol start=\"2\">\n<li><span style=\"font-weight: 400;\"> Create the Flutter module using the following command:<\/span><\/li>\n<\/ol>\n<pre><span style=\"font-weight: 400;\">\u00a0```<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0<\/span> <span style=\"font-weight: 400;\">$ flutter create -t module --org com.example my_flutter<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0<\/span> <span style=\"font-weight: 400;\">```<\/span><\/pre>\n<p><span style=\"font-weight: 400;\">The optional `&#8211;org` parameter allows you to define a reverse domain name notation for your app. Omitting this parameter won&#8217;t hinder you, as it can be adjusted later. The name you provide for your Flutter module (in this case, `<em>my_flutter<\/em>`) is mandatory.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This command generates a Flutter module project with essential Dart code to kickstart your project. Additionally, <em>an `.android\/<\/em>` hidden subfolder is created. Within this folder lies an Android project that not only aids in running a basic version of your Flutter module but also acts as a wrapper to integrate the Flutter module as an embeddable Android library.<\/span><\/p>\n<h2><strong>Step 2: Adding the Flutter Module Dependency<\/strong><\/h2>\n<p><span style=\"font-weight: 400;\">Assuming you&#8217;ve successfully generated your Flutter module inside `some\/path\/my_flutter\/`, the next phase is to build the Android Archive (AAR). The AAR serves as an Android library that can be integrated as a dependency in your Android app module.<\/span><\/p>\n<p><strong>AARs offer advantages over JAR files:<\/strong><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">They can encompass Android resources and a manifest file, enabling the inclusion of shared resources like layouts, drawables, and Java classes.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">&#8211; AARs can accommodate C\/C++ libraries for use by the app module&#8217;s C\/C++ code.<\/span><\/li>\n<\/ul>\n<p><strong>To create the AAR, execute the following commands:<\/strong><\/p>\n<ol>\n<li><span style=\"font-weight: 400;\"> Navigate to your Flutter module directory:<\/span><\/li>\n<\/ol>\n<pre><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0```<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0$ cd some\/path\/my_flutter\/<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0```<\/span>\r\n\r\n\r\n<\/pre>\n<ol start=\"2\">\n<li>\n<pre><span style=\"font-weight: 400;\"> Build the AAR using Flutter's build command:<\/span><\/pre>\n<\/li>\n<\/ol>\n<pre><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0```<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0$ flutter build aar<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0```<\/span><\/pre>\n<p><span style=\"font-weight: 400;\">The output provides clear instructions for the next steps. It guides you to open the `<em>build.gradle<\/em>` file within your native Android project. The code provided in the output, including the `String storageUrl` variable and the `repositories { &#8230; }` block, should be integrated within the `repositories { &#8230; }` block under `dependencyResolutionManagement { &#8230; }` in your `<em>settings.gradle<\/em>` (or similar) file. Additionally, the provided dependencies should be inserted in the corresponding `dependencies { &#8230; }` block within the `<em>build.gradle<\/em>` file. Finally, enabling the profile build type is accomplished by copying the `profile { initWithDebug }` block into the `buildTypes { &#8230; }` block of the `<em>build.gradle<\/em>` file.<\/span><\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"font-weight: 400;\">With these changes in place, rebuild the `<em>build.gradle<\/em>` file to apply the modifications.<\/span><\/p>\n<h3><strong>Step 3: Running the Flutter App within the Android App<\/strong><\/h3>\n<p><span style=\"font-weight: 400;\">Flutter simplifies the process of displaying a Flutter experience within an Android app through the `FlutterActivity`. To utilize this feature, you need to follow these steps:<\/span><\/p>\n<ol>\n<li><b> Add the following XML code within the `application` tag of your `AndroidManifest.xml` file:<\/b><\/li>\n<\/ol>\n<pre><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0```<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&lt;activity<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0android:name=\"io.flutter.embedding.android.FlutterActivity\"<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0android:theme=\"@style\/LaunchTheme\"<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0android:configChanges=\"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode\"<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0android:hardwareAccelerated=\"true\"<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0android:windowSoftInputMode=\"adjustResize\"<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0android:resizeableActivity=\"false\" \/&gt;<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0```<\/span><\/pre>\n<ol start=\"2\">\n<li><b> Inside your Kotlin code, initiate your Flutter activity as needed.<\/b><\/li>\n<\/ol>\n<p><span style=\"font-weight: 400;\">And there you have it! You&#8217;ve successfully integrated your Flutter module into your native Android app. This seamless integration opens doors to a plethora of possibilities, combining the power of Flutter&#8217;s rich UI capabilities with the versatility of native Android development.\u00a0<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>One way to achieve this is by seamlessly integrating a Flutter app into a native Android application. In this article, we&#8217;ll delve into the process of integrating a Flutter module into a native Android app, step by step. Step 1: Creating your Flutter Module Let&#8217;s dive right into the process. The initial step involves creating [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":7922,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,568,585],"tags":[930,932,928,931],"class_list":["post-7918","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-android","category-flutter","category-mobile-app-development","tag-flutter-app","tag-flutter-app-native-android","tag-flutter-blog","tag-native-android"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Integrate Flutter app in native Android app - InnovationM - 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:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Integrate Flutter app in native Android app - InnovationM - Blog\" \/>\n<meta property=\"og:description\" content=\"One way to achieve this is by seamlessly integrating a Flutter app into a native Android application. In this article, we&#8217;ll delve into the process of integrating a Flutter module into a native Android app, step by step. Step 1: Creating your Flutter Module Let&#8217;s dive right into the process. The initial step involves creating [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/\" \/>\n<meta property=\"og:site_name\" content=\"InnovationM - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-12T04:06:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-12T04:30:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2023\/10\/Integrate-Flutter-app-in-native-Android-app-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"InnovationM Admin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InnovationM Admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/\"},\"author\":{\"name\":\"InnovationM Admin\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\"},\"headline\":\"Integrate Flutter app in native Android app\",\"datePublished\":\"2023-10-12T04:06:14+00:00\",\"dateModified\":\"2023-10-12T04:30:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/\"},\"wordCount\":515,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/Integrate-Flutter-app-in-native-Android-app-1.png\",\"keywords\":[\"flutter app\",\"flutter app native android\",\"flutter blog\",\"native android\"],\"articleSection\":[\"Android\",\"Flutter\",\"Mobile App Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/\",\"name\":\"Integrate Flutter app in native Android app - InnovationM - Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/Integrate-Flutter-app-in-native-Android-app-1.png\",\"datePublished\":\"2023-10-12T04:06:14+00:00\",\"dateModified\":\"2023-10-12T04:30:33+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/Integrate-Flutter-app-in-native-Android-app-1.png\",\"contentUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/Integrate-Flutter-app-in-native-Android-app-1.png\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/integrate-flutter-app-native-android-app\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Integrate Flutter app in native Android app\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/\",\"name\":\"InnovationM - Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\",\"name\":\"InnovationM Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"caption\":\"InnovationM Admin\"},\"sameAs\":[\"http:\\\/\\\/www.innovationm.com\\\/\"],\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/author\\\/innovationmadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Integrate Flutter app in native Android app - InnovationM - 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:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/","og_locale":"en_US","og_type":"article","og_title":"Integrate Flutter app in native Android app - InnovationM - Blog","og_description":"One way to achieve this is by seamlessly integrating a Flutter app into a native Android application. In this article, we&#8217;ll delve into the process of integrating a Flutter module into a native Android app, step by step. Step 1: Creating your Flutter Module Let&#8217;s dive right into the process. The initial step involves creating [&hellip;]","og_url":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/","og_site_name":"InnovationM - Blog","article_published_time":"2023-10-12T04:06:14+00:00","article_modified_time":"2023-10-12T04:30:33+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2023\/10\/Integrate-Flutter-app-in-native-Android-app-1.png","type":"image\/png"}],"author":"InnovationM Admin","twitter_misc":{"Written by":"InnovationM Admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/#article","isPartOf":{"@id":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/"},"author":{"name":"InnovationM Admin","@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed"},"headline":"Integrate Flutter app in native Android app","datePublished":"2023-10-12T04:06:14+00:00","dateModified":"2023-10-12T04:30:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/"},"wordCount":515,"commentCount":0,"image":{"@id":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/#primaryimage"},"thumbnailUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2023\/10\/Integrate-Flutter-app-in-native-Android-app-1.png","keywords":["flutter app","flutter app native android","flutter blog","native android"],"articleSection":["Android","Flutter","Mobile App Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/","url":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/","name":"Integrate Flutter app in native Android app - InnovationM - Blog","isPartOf":{"@id":"https:\/\/www.innovationm.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/#primaryimage"},"image":{"@id":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/#primaryimage"},"thumbnailUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2023\/10\/Integrate-Flutter-app-in-native-Android-app-1.png","datePublished":"2023-10-12T04:06:14+00:00","dateModified":"2023-10-12T04:30:33+00:00","author":{"@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed"},"breadcrumb":{"@id":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/#primaryimage","url":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2023\/10\/Integrate-Flutter-app-in-native-Android-app-1.png","contentUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2023\/10\/Integrate-Flutter-app-in-native-Android-app-1.png","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/www.innovationm.com\/blog\/integrate-flutter-app-native-android-app\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.innovationm.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Integrate Flutter app in native Android app"}]},{"@type":"WebSite","@id":"https:\/\/www.innovationm.com\/blog\/#website","url":"https:\/\/www.innovationm.com\/blog\/","name":"InnovationM - Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.innovationm.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed","name":"InnovationM Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","caption":"InnovationM Admin"},"sameAs":["http:\/\/www.innovationm.com\/"],"url":"https:\/\/www.innovationm.com\/blog\/author\/innovationmadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts\/7918","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/comments?post=7918"}],"version-history":[{"count":0,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts\/7918\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/media\/7922"}],"wp:attachment":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/media?parent=7918"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/categories?post=7918"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/tags?post=7918"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}