{"id":21836,"date":"2019-01-14T16:27:38","date_gmt":"2019-01-14T16:27:38","guid":{"rendered":"http:\/\/introducing_the_cloudinary_demo_android_app_part_2"},"modified":"2024-06-04T15:51:55","modified_gmt":"2024-06-04T22:51:55","slug":"introducing_the_cloudinary_demo_android_app_part_2","status":"publish","type":"post","link":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2","title":{"rendered":"Introducing the Cloudinary Demo Android App, Part 2"},"content":{"rendered":"<div class=\"wp-block-cloudinary-markdown \"><p>Recently we added the Cloudinary Demo- e-commerce App to the Google Play Store. This app demonstrates the best practices for optimal delivery of images on a storefront, including category pages, product pages, and a shopping cart. At the time, we published <a href=\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_1\">Introducing the Cloudinary Demo Android App, Part 1<\/a>, which provided an under-the-hood tour of how the eCommerce Android App was designed and how Cloudinary was integrated throughout.<\/p>\n<p>The app demonstrates how to leverage some of Cloudinary\u2019s capabilities, such as managing <a href=\"https:\/\/cloudinary.com\/blog\/automating_file_upload_and_sharing\">file uploads<\/a>, displaying images responsively, and optimizing delivery through global Content Delivery Networks (CDNs). The app was developed as an open source project so that you can explore the code for yourself and see how to improve your users\u2019 experience and the performance of your apps by delivering images, enhanced and optimized for different contexts.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/cloudinary-res.cloudinary.com\/image\/upload\/bo_5px_solid_black,f_auto,q_auto\/dpr_auto\/DemoApp1.jpg\" alt=\"CloudinaryDemoApp1\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"200\" height=\"396.36363636364\"\/>  <img decoding=\"async\" src=\"https:\/\/cloudinary-res.cloudinary.com\/image\/upload\/bo_5px_solid_black,f_auto,q_auto\/dpr_auto\/DemoApp2.jpg\" alt=\"CloudinaryDemoApp1\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"200\" height=\"396.36363636364\"\/>  <img decoding=\"async\" src=\"https:\/\/cloudinary-res.cloudinary.com\/image\/upload\/bo_5px_solid_black,f_auto,q_auto\/dpr_auto\/DemoApp3.jpg\" alt=\"CloudinaryDemoApp1\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"200\" height=\"396.36363636364\"\/><\/p>\n<div style=\"clear: both\"><\/div>\n<p>In part 2 of this series, we will focus on how the open source code that we\u2019ve published on <a href=\"https:\/\/github.com\/cloudinary\/android-demo\">GitHub<\/a> can also be used as the code base for developing your very own Android app, using Cloudinary for media upload, optimization, and responsive delivery.<\/p>\n<div class='c-callout  c-callout--inline-title c-callout--tip'><strong class='c-callout__title'>Tip:<\/strong> <p>Some sections in this post assume you have a basic understanding of how the Cloudinary Demo Android App is designed and structured. If you didn\u2019t get a chance to read <a href=\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_1\">Part 1<\/a> of this post, or it\u2019s been a while since you did, we recommend reading it before continuing.<\/p><\/div>\n<h2>Overview<\/h2>\n<p>After you fork the Android Demo Application github repository, you just need to make a few basic changes to make the app your own:<\/p>\n<ol>\n<li>\n<a href=\"#configure_your_app\">Configure your App<\/a> with the Cloud Name to your account.<\/li>\n<li>\n<a href=\"#update_the_data_flow\">Update the Data Flow<\/a> from the <code>data<\/code> and <code>remote<\/code> packages, through the <code>repo<\/code> to the <code>ViewModels<\/code>, and then on to the UI.<\/li>\n<li>\n<a href=\"#give_your_product_images_context\">Give your Product Images Context<\/a> so that your app will use your own product images from your own Cloudinary account.<\/li>\n<li>\n<a href=\"#switching_over_to_a_real_backend_flow\">Switch Over to a Real Backend Flow<\/a> instead of the local file implementation.<\/li>\n<\/ol>\n<p>So that\u2019s it in a nutshell. The following sections go into more detail:<\/p>\n<h2>Configure your App<\/h2>\n<p>Your App needs to be updated to use the Cloud Name of your own Cloudinary account to retrieve product images.  If you don\u2019t have a Cloudinary account yet, you can easily <a href=\"https:\/\/cloudinary.com\/users\/register_free\">sign up for a free account<\/a>.\nThe first step is to update the <code>cloudName<\/code> in two places:<\/p>\n<ul>\n<li>The <code>config.xml<\/code> file located under <code>\/res\/values<\/code>\n<\/li>\n<li>The <code>CloudinaryWebService.java<\/code> public interface located under <code>java\/com\/cloudinary\/android\/ecommerce\/demo\/remote<\/code>\n<\/li>\n<\/ul>\n<p>The App uses Cloudinary\u2019s <a href=\"https:\/\/cloudinary.com\/documentation\/image_transformations#client_side_resource_lists\">client-side resource lists<\/a> to return all the images that have been tagged with <code>e_commerce_product<\/code>, however this can be changed to a tag of your choice, under the config.xml file located under <code>\/res\/values<\/code>. Make sure that your App will be able to access Cloudinary in this way: open your <a href=\"https:\/\/cloudinary.com\/users\/login\">Management Console<\/a> and then navigate to <em>Settings =&gt; Security =&gt; Restricted image types<\/em> and make sure that the <code>Resource List<\/code> check-box is clear.<\/p>\n<h2>Update the Data Flow<\/h2>\n<p>The starting point for personalizing the app for your own needs is updating the <code>data<\/code> package to use your own models. Make changes as follows:<\/p>\n<ol>\n<li>Adapt the model itself to use a class representing your own products (e.g. for this app, a <code>Product<\/code> is the main model).<\/li>\n<li>Update the <code>ProductDatabase<\/code> to include the new and modified models.<\/li>\n<li>Update the <code>ProductDao<\/code> to refactor the queries, and add\/remove queries to handle the new model and relations.<\/li>\n<\/ol>\n<p>The next step is adapting the <code>remote<\/code> package for your own use. Change the fields and parameters to use the new models. Once that\u2019s done, the <code>ProductRepo<\/code> also needs to be updated similarly: modify the parameters, fields and types to handle the new models as well.<\/p>\n<p>Now on to the <code>viewmodel<\/code> package, to update the parameters and types as well as the application logic if needed, followed by the necessary UI changes in the <code>app<\/code> package. Most of the fragments, screens, and grids can and should be reused. XML layout files can be updated and those changes should be reflected in the different adapters (e.g. <code>CategoriesAdapter,<\/code> <code>ProductAdapter<\/code> etc.).<\/p>\n<h2>Give your Product Images Context<\/h2>\n<p>All images to be included in your app need to have a common tag (<code>e_commerce_product<\/code> by default). The app logic utilizes product information stored with the images as \u2018context\u2019 key-value pairs: make sure that all images to be displayed also include the following 6 \u2018context\u2019 key value pairs:<\/p>\n<ul>\n<li>\n<code>department<\/code>: \u201cmen\u201d or \u201cwomen\u201d.<\/li>\n<li>\n<code>description<\/code>: a short string description, 2-3 words.<\/li>\n<li>\n<code>name<\/code>: a short string, preferably one word.<\/li>\n<li>\n<code>price<\/code>: a number.<\/li>\n<li>\n<code>productId<\/code>: a number<\/li>\n<li>\n<code>isMain<\/code>: a boolean value determining whether this is the product\u2019s main image (only one asset per product should have \u201ctrue\u201d for this field).<\/li>\n<\/ul>\n<p>All the context key-value pairs, except for <code>isMain<\/code>, should be identical across all the images that represent the same product. An example of the context key\/values assigned to an image:<\/p>\n<pre class=\"js-syntax-highlighted\"><code>\u201cdepartment\u201d:\u201cmen\u201d,\n\u201cdescription\u201d:\u201cMessenger bag\u201d,\n\u201cname\u201d:\u201cMessenger\u201d,\n\u201cprice\u201d:\u201c245&quot;,\n\u201cproductId\u201d:\u201c10&quot;,\n&quot;isMain&quot;:&quot;false&quot;\n<\/code><\/pre>\n<h2>Switching Over to a Real Backend Flow<\/h2>\n<p>Lastly, you\u2019ll probably want to switch the injected remote repository to use a backend instead of the local file implementation that we used for demo purposes:<\/p>\n<ol>\n<li>Update the ProductRepo.java file located under <code>java\/com\/cloudinary\/android\/ecommerce\/demo\/data<\/code>: change the label in the constructor annotated parameter, from cloudinary to backend (i.e., <code>@Named(\u201ccloudinary\u201d)<\/code> should become <code>@Named(\u201cbackend\u201d)<\/code>)<\/li>\n<li>Change the implementation of BackendWebService.java located under <code>com\/cloudinary\/android\/ecommerce\/demo\/remote<\/code> to retrieve and save data against your own backend. Both <code>saveProduct()<\/code> and <code>getAllProducts()<\/code> should be completely re-written, while all the other methods should be completely removed.<\/li>\n<li>Your backend logic should now determine the relevant PublicIds of the images for each product and the product metadata should now be implemented directly in the model from your backend, and not from the context key-value pairs attached to the image.<\/li>\n<li>If any Android components are added, removed or modified, verify the injection engine is updated accordingly (the <code>di<\/code> package).<\/li>\n<\/ol>\n<h2>To App or not to App<\/h2>\n<p>The open source code of the Cloudinary Demo &#8211; eCommerce Android App can be easily modified to provide the framework for your own App. The code takes advantage of existing open source libraries and gets them to work together while adopting best practices for efficient management and optimal delivery of your images when building your own Android App. If you don\u2019t have a Cloudinary account yet, you can <a href=\"https:\/\/cloudinary.com\/users\/register_free\">sign up for a free account<\/a> and give it a try.<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":41,"featured_media":21837,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_cloudinary_featured_overwrite":false,"footnotes":""},"categories":[1],"tags":[333,98,119,165,202,227],"class_list":["post-21836","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-android","tag-e-commerce","tag-file-upload","tag-image-transformation","tag-mobile","tag-performance-optimization"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.6 (Yoast SEO v26.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Customize Cloudinary&#039;s eCommerce Android App<\/title>\n<meta name=\"description\" content=\"Learn how to use the Cloudinary Demo open source code as the base for developing your own eCommerce Android app\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Introducing the Cloudinary Demo Android App, Part 2\" \/>\n<meta property=\"og:description\" content=\"Learn how to use the Cloudinary Demo open source code as the base for developing your own eCommerce Android app\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2\" \/>\n<meta property=\"og:site_name\" content=\"Cloudinary Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-01-14T16:27:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-04T22:51:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/v1649746267\/Web_Assets\/blog\/CloudinaryDemoApp2\/CloudinaryDemoApp2-png?_i=AA\" \/>\n\t<meta property=\"og:image:width\" content=\"1540\" \/>\n\t<meta property=\"og:image:height\" content=\"847\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"NewsArticle\",\"@id\":\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#article\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"Introducing the Cloudinary Demo Android App, Part 2\",\"datePublished\":\"2019-01-14T16:27:38+00:00\",\"dateModified\":\"2024-06-04T22:51:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2\"},\"wordCount\":7,\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649746267\/Web_Assets\/blog\/CloudinaryDemoApp2\/CloudinaryDemoApp2.png?_i=AA\",\"keywords\":[\"Android\",\"E-commerce\",\"File-upload\",\"Image Transformation\",\"Mobile\",\"Performance Optimization\"],\"inLanguage\":\"en-US\",\"copyrightYear\":\"2019\",\"copyrightHolder\":{\"@id\":\"https:\/\/cloudinary.com\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2\",\"url\":\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2\",\"name\":\"How to Customize Cloudinary's eCommerce Android App\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649746267\/Web_Assets\/blog\/CloudinaryDemoApp2\/CloudinaryDemoApp2.png?_i=AA\",\"datePublished\":\"2019-01-14T16:27:38+00:00\",\"dateModified\":\"2024-06-04T22:51:55+00:00\",\"description\":\"Learn how to use the Cloudinary Demo open source code as the base for developing your own eCommerce Android app\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#primaryimage\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649746267\/Web_Assets\/blog\/CloudinaryDemoApp2\/CloudinaryDemoApp2.png?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649746267\/Web_Assets\/blog\/CloudinaryDemoApp2\/CloudinaryDemoApp2.png?_i=AA\",\"width\":1540,\"height\":847},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudinary.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Introducing the Cloudinary Demo Android App, Part 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"name\":\"Cloudinary Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudinary.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\",\"name\":\"Cloudinary Blog\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"width\":312,\"height\":60,\"caption\":\"Cloudinary Blog\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Customize Cloudinary's eCommerce Android App","description":"Learn how to use the Cloudinary Demo open source code as the base for developing your own eCommerce Android app","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:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2","og_locale":"en_US","og_type":"article","og_title":"Introducing the Cloudinary Demo Android App, Part 2","og_description":"Learn how to use the Cloudinary Demo open source code as the base for developing your own eCommerce Android app","og_url":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2","og_site_name":"Cloudinary Blog","article_published_time":"2019-01-14T16:27:38+00:00","article_modified_time":"2024-06-04T22:51:55+00:00","og_image":[{"width":1540,"height":847,"url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/v1649746267\/Web_Assets\/blog\/CloudinaryDemoApp2\/CloudinaryDemoApp2-png?_i=AA","type":"image\/png"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#article","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2"},"author":{"name":"","@id":""},"headline":"Introducing the Cloudinary Demo Android App, Part 2","datePublished":"2019-01-14T16:27:38+00:00","dateModified":"2024-06-04T22:51:55+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2"},"wordCount":7,"publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649746267\/Web_Assets\/blog\/CloudinaryDemoApp2\/CloudinaryDemoApp2.png?_i=AA","keywords":["Android","E-commerce","File-upload","Image Transformation","Mobile","Performance Optimization"],"inLanguage":"en-US","copyrightYear":"2019","copyrightHolder":{"@id":"https:\/\/cloudinary.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2","url":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2","name":"How to Customize Cloudinary's eCommerce Android App","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#primaryimage"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649746267\/Web_Assets\/blog\/CloudinaryDemoApp2\/CloudinaryDemoApp2.png?_i=AA","datePublished":"2019-01-14T16:27:38+00:00","dateModified":"2024-06-04T22:51:55+00:00","description":"Learn how to use the Cloudinary Demo open source code as the base for developing your own eCommerce Android app","breadcrumb":{"@id":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#primaryimage","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649746267\/Web_Assets\/blog\/CloudinaryDemoApp2\/CloudinaryDemoApp2.png?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649746267\/Web_Assets\/blog\/CloudinaryDemoApp2\/CloudinaryDemoApp2.png?_i=AA","width":1540,"height":847},{"@type":"BreadcrumbList","@id":"https:\/\/cloudinary.com\/blog\/introducing_the_cloudinary_demo_android_app_part_2#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudinary.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Introducing the Cloudinary Demo Android App, Part 2"}]},{"@type":"WebSite","@id":"https:\/\/cloudinary.com\/blog\/#website","url":"https:\/\/cloudinary.com\/blog\/","name":"Cloudinary Blog","description":"","publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudinary.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudinary.com\/blog\/#organization","name":"Cloudinary Blog","url":"https:\/\/cloudinary.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","width":312,"height":60,"caption":"Cloudinary Blog"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":""}]}},"jetpack_featured_media_url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649746267\/Web_Assets\/blog\/CloudinaryDemoApp2\/CloudinaryDemoApp2.png?_i=AA","_links":{"self":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/21836","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/users\/41"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/comments?post=21836"}],"version-history":[{"count":5,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/21836\/revisions"}],"predecessor-version":[{"id":34368,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/21836\/revisions\/34368"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media\/21837"}],"wp:attachment":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media?parent=21836"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/categories?post=21836"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/tags?post=21836"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}