{"id":2676,"date":"2016-06-21T10:40:43","date_gmt":"2016-06-21T10:40:43","guid":{"rendered":"https:\/\/yeeply.com\/en\/blog\/?p=2676"},"modified":"2020-12-02T16:12:25","modified_gmt":"2020-12-02T16:12:25","slug":"resources-android-app-development","status":"publish","type":"post","link":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/","title":{"rendered":"Resources available for Android app development"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p style=\"text-align: justify;\">Anything we might say will surely sound Chinese to a customer-owner of an app project on which we are working \u2212 when we talk to him about the resources available on Android. However, these resources are a<a href=\"https:\/\/yeeply.com\/en\/blog\/why-develop-augmented-reality-apps-for-android\/\"> very important part of Android app development<\/a> and defining them correctly is vital to accomplish <a href=\"https:\/\/yeeply.com\/en\/blog\/screen-colours-and-typography-basic-elements-in-apps-design\/\">a good app design.<\/a> The app designer should know \u2013 precisely for this reason \u2212 what we mean by these resources&#8230; If it&#8217;s not the case, read on. We&#8217;ll start with the basics.<\/p>\n<div style=\"text-align: center;\">\n<style type=\"text\/css\"><!--br {mso-data-placement:same-cell;}--><\/style>\n<div class=\"bt-proyecto\"><a class=\"do-not-track\" href=\"https:\/\/yeeply.com\/en\/mobile-app-development\/?rel=EN-BT-proyecto-app#publish-project\" target=\"_blank\" rel=\"noopener\">WANT TO CREATE AN APP? TELL US ABOUT YOUR PROJECT!<\/a><\/div>\n<h2 style=\"text-align: justify;\">What are these resources?<\/h2>\n<p style=\"text-align: justify;\">Android resources are basically files or external data supporting our app&#8217;s operation. These files can be images, strings, colours, styles, etc. One of their main advantages is that they enable designers to <a href=\"https:\/\/yeeply.com\/en\/blog\/is-it-profitable-to-be-an-android-developer\/\">work simultaneously with Android app developers<\/a>.<\/p>\n<p style=\"text-align: justify;\">While this does not guarantee fewer errors, the development time will be shorter if there is a rapport between both sides.<\/p>\n<p style=\"text-align: justify;\">Adding a resource to an app is very easy: you only need to add the file to the required folder in the project. The system will automatically create a resource ID within the R class for each resource that we add.<\/p>\n<p style=\"text-align: justify;\">We&#8217;ll find these resources in the folder called MyProyect\/res. It contains the subdirectories that bring together the different kinds of resources that will be discussed below.<\/p>\n<p style=\"text-align: center;\"><em>You might be interested | <a href=\"https:\/\/yeeply.com\/en\/blog\/where-to-find-an-android-app-development-company\/\" target=\"_blank\" rel=\"noopener noreferrer\">Where to Find an Android App Development Company<\/a><\/em><\/p>\n<p style=\"text-align: center;\"><img fetchpriority=\"high\" decoding=\"async\" class=\"aligncenter wp-image-2678 size-full\" title=\"drawing of Android logo\" src=\"https:\/\/yeeply.com\/en\/wp-content\/uploads\/2016\/06\/resources-android-app-development.png\" alt=\"drawing of Android logo\" width=\"513\" height=\"276\" \/><\/p>\n<p style=\"text-align: justify;\">We will now see some more specific examples in case you are not yet sure about the use of these resources.<\/p>\n<p style=\"text-align: justify;\">They can be used to render an app available in multiple languages. We can assign values to strings that change the app&#8217;s language according to the language set on a particular mobile device.<\/p>\n<p style=\"text-align: justify;\">They can also be useful for adjusting the app when the device switches from a vertical position (portrait) to a horizontal one (landscape) and vice versa, thus becoming more practical and user-friendly.<\/p>\n<p style=\"text-align: justify;\">Other uses: fitting in different screen sizes and densities (smartphones, phablets, tablets, etc.), adapting to different kinds of navigation, etc.<\/p>\n<h2 style=\"text-align: justify;\">Kinds of resources for Android app development<\/h2>\n<p style=\"text-align: justify;\">Even though there are hundreds of blogs that have developed their own tables, we draw the following information from Android Developers to put at your disposal information coming from the most official source possible. This source contains all the information available on the different kinds of resources that you can use in Android app development. We suggest the following classification:<\/p>\n<h3 style=\"text-align: justify;\">1. Animation Resources<\/h3>\n<p style=\"text-align: justify;\">Their purpose is to set default animations.<\/p>\n<p style=\"text-align: justify;\">They are stored in the res\/drawable\/ folder under the R.drawable identifier. They support bitmap files (.png, .jpg or .gif), PNG files in Nine-patch (.9.png) format and XML files with graphics descriptors.<\/p>\n<p style=\"text-align: justify;\">They can also be found in a folder called res\/animator\/ under ID R.anim and support XML files that modify an object&#8217;s properties over time.<\/p>\n<h3 style=\"text-align: justify;\">2. Colour State List Resources<\/h3>\n<p style=\"text-align: justify;\">For determining a component&#8217;s colour depending on its state.<\/p>\n<p style=\"text-align: justify;\">Stored in res\/color\/ and accessed through R.color.<\/p>\n<h3 style=\"text-align: justify;\">3. Drawable Resources<\/h3>\n<p style=\"text-align: justify;\">For defining bitmap or XML graphics. They are stored in the res\/drawable\/ folder under the R.drawable identifier.<\/p>\n<h3 style=\"text-align: justify;\">4. Layout Resources<\/h3>\n<p style=\"text-align: justify;\">For defining an app&#8217;s interfaces. They contain XML files and are stored in res\/layout\/ under ID R.layout.<\/p>\n<h3 style=\"text-align: justify;\">5. Menu resources<\/h3>\n<p style=\"text-align: justify;\">For defining the contents of an app&#8217;s menus. They are stored in res\/menu\/ and accessed through R.menu.<\/p>\n<h3 style=\"text-align: justify;\">6. String Resources<\/h3>\n<p style=\"text-align: justify;\">They contain XML files with data embedded in strings or in string arrays (including the string&#8217;s format and style). They can be sorted into strings.xml, colors.xml, dimens.xml, styles.xml or arrays.xml and are stored in res\/values\/ and include R.string, R.array, and R.plurals.<\/p>\n<h3 style=\"text-align: justify;\">7. Style Resources<\/h3>\n<p style=\"text-align: justify;\">They define a number of attributes that can be applied to a view or an activity. Also used for <a href=\"https:\/\/yeeply.com\/en\/blog\/screen-colours-and-typography-basic-elements-in-apps-design\/\">defining an app&#8217;s style and design<\/a>. They are stored in res\/values and accessed through R.style.<\/p>\n<h3 style=\"text-align: justify;\">8. Other types:<\/h3>\n<p style=\"text-align: justify;\">We&#8217;ll be defining values as being Boolean, integer, dimensions, colours and other arrangements.<\/p>\n<p style=\"text-align: justify;\">They are stored in res\/values\/ but each of them is accessed through unique R subclasses (such as R.bool, R.integer, R.dimen, etc.).<\/p>\n<h2 style=\"text-align: justify;\">And what about alternative resources?<\/h2>\n<p style=\"text-align: justify;\">Yes, Android app development resources also allow variations. By an alternative resource, we mean the variation of a resource that adjusts to a configuration feature available on a specific mobile device where the app is running.<\/p>\n<p style=\"text-align: justify;\">What makes using alternative resources possible for us? Well, we should thank Google itself for compiling a list of qualifiers, which standardises the possible configurations available on Android devices. It&#8217;s a grammatical mechanism that dates from Android&#8217;s 4.3 version (API 21) and enables specifying a resource&#8217;s purpose, i.e. modify its main function:<\/p>\n<p style=\"text-align: justify;\">&lt;resource_name&gt;-&lt;qualifier&gt;<\/p>\n<p style=\"text-align: justify;\">A good example of its use is when specifying \u2212 with the mipmap\/ resource \u2212 different variations for different kinds of screens. Each version will contain a qualifier for each screen variation. The app may then choose the variation that fits the terminal best.<\/p>\n<p style=\"text-align: justify;\">As the experts from HermosaProgramaci\u00f3n put it, &#8220;ipmap-hdpi will contain the variation of the ic_launcher.png resource for devices with high-density screens (~ 240dpi). This condition is specified by the hdpi qualifier&#8221;, as we&#8217;ll see in the following example.<\/p>\n<p style=\"text-align: justify;\">Let&#8217;s also not forget that the image must be perfectly designed to fit specific sizes and densities. The images created must fit the corresponding qualifiers. Let&#8217;s see some of these qualifiers:<\/p>\n<h3 style=\"text-align: justify;\">BY SIZE<\/h3>\n<p style=\"text-align: justify;\"><strong>Qualifier or suffix:<\/strong><em> small<\/em><\/p>\n<p style=\"text-align: justify;\">For small screens, like those displaying QVGA (320x426dps)<\/p>\n<p style=\"text-align: justify;\"><strong>Qualifier or suffix: <\/strong><em>normal<\/em><\/p>\n<p style=\"text-align: justify;\">For normal screens, like those displaying HTC Magic or the like (320x470dps)<\/p>\n<p style=\"text-align: justify;\"><strong>Qualifier or suffix:<\/strong><em> large<\/em><\/p>\n<p style=\"text-align: justify;\">Resources for large screens. Tablets are the clearest example of this kind of screens. (480x640dps)<\/p>\n<h3 style=\"text-align: justify;\">BY DENSITY<\/h3>\n<p style=\"text-align: justify;\"><strong>Qualifier or suffix:<\/strong><em> ldpi<\/em><\/p>\n<p style=\"text-align: justify;\">Low-density resources (between 100 and 120 dpi)<\/p>\n<p style=\"text-align: justify;\"><strong>Qualifier or suffix: <\/strong><em>mdpi<\/em><\/p>\n<p style=\"text-align: justify;\">Medium density (120 and 160 dpi)<\/p>\n<p style=\"text-align: justify;\"><strong>Qualifier or suffix:<\/strong><em> hdpi<\/em><\/p>\n<p style=\"text-align: justify;\">High density (between 160 and 260 dpi)<\/p>\n<p style=\"text-align: justify;\"><strong>Qualifier or suffix: <\/strong><em>nodpi<\/em><\/p>\n<p style=\"text-align: justify;\">For density-independent resources. This qualifier will not force the platform into scaling up resources.<\/p>\n<h3 style=\"text-align: justify;\">ASPECT RATIO<\/h3>\n<p style=\"text-align: justify;\"><strong>Qualifier or suffix: <\/strong><em>long<\/em><\/p>\n<p style=\"text-align: justify;\">For screens of any size and density, where the aspect ratio of both width and height is much higher than the screen&#8217;s basic configuration.<\/p>\n<p style=\"text-align: justify;\"><strong>Qualifier or suffix: <\/strong><em>notlong<\/em><\/p>\n<p style=\"text-align: justify;\">For screens where the aspect ratio is similar to the screen&#8217;s basic configuration.<\/p>\n<h3 style=\"text-align: justify;\">PLATFORM VERSION<\/h3>\n<p style=\"text-align: justify;\"><strong>Qualifier or suffix:<\/strong><em> v&lt;api-level&gt;<\/em><\/p>\n<p style=\"text-align: justify;\">Allows identifying precisely which resources will be needed for an API&#8217;s specific version or for a higher version.<\/p>\n<h3 style=\"text-align: justify;\">VERTICAL<\/h3>\n<p style=\"text-align: justify;\"><strong>Qualifier or suffix: <\/strong><em>port<\/em><\/p>\n<p style=\"text-align: justify;\">Indicates that these resources will be used for the screen&#8217;s portrait mode (or vertical mode).<\/p>\n<h3 style=\"text-align: justify;\">HORIZONTAL<\/h3>\n<p style=\"text-align: justify;\"><strong>Qualifier or suffix:<\/strong><em> land<\/em><\/p>\n<p style=\"text-align: justify;\">Indicates that these resources will be used for the screen&#8217;s landscape mode (or horizontal mode).<\/p>\n<p style=\"text-align: justify;\">Well,\u00a0there is our article on how to use resources in Android development!<\/p>\n<p>&nbsp;<\/p>\n<style type=\"text\/css\"><!--br {mso-data-placement:same-cell;}--><\/style>\n<p><a href=\"https:\/\/yeeply.com\/en\/mobile-app-development\/?rel=EN-BP-proyecto-app#publish-project\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/yeeply.com\/en\/wp-content\/uploads\/2020\/04\/EN_proyecto-app_blog-post_B.png\" alt=\"Proyecto App\" width=\"620\" height=\"253\" \/><\/a><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; Anything we might say will surely sound Chinese to a customer-owner of an app project on which we are working \u2212 when we talk &#8230;<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_uag_custom_page_level_css":"","footnotes":""},"categories":[24],"tags":[],"class_list":["post-2676","post","type-post","status-publish","format-standard","hentry","category-mobile-app-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Which resources are available for Android app development?<\/title>\n<meta name=\"description\" content=\"Mastering the resources for Android is vital in app design and in android app development. Here we gather all the basics to help you in creating an app. \u261d\ufe0f\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Which resources are available for Android app development?\" \/>\n<meta property=\"og:description\" content=\"Mastering the resources for Android is vital in app design and in android app development. Here we gather all the basics to help you in creating an app. \u261d\ufe0f\" \/>\n<meta property=\"og:url\" content=\"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/\" \/>\n<meta property=\"og:site_name\" content=\"Yeeply\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/YeeplyMobile\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-06-21T10:40:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-02T16:12:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/yeeply.com\/en\/wp-content\/uploads\/2016\/06\/resources-android-app-development.png\" \/>\n<meta name=\"author\" content=\"Yeeply\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Yeeply_EN\" \/>\n<meta name=\"twitter:site\" content=\"@Yeeply_EN\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yeeply\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/blog\\\/mobile-app-development\\\/resources-android-app-development\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/blog\\\/mobile-app-development\\\/resources-android-app-development\\\/\"},\"author\":{\"name\":\"Yeeply\",\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/#\\\/schema\\\/person\\\/c7927839158c47143448f3bcdaf7cc14\"},\"headline\":\"Resources available for Android app development\",\"datePublished\":\"2016-06-21T10:40:43+00:00\",\"dateModified\":\"2020-12-02T16:12:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/blog\\\/mobile-app-development\\\/resources-android-app-development\\\/\"},\"wordCount\":1156,\"publisher\":{\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/blog\\\/mobile-app-development\\\/resources-android-app-development\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/yeeply.com\\\/en\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/resources-android-app-development.png\",\"articleSection\":[\"App\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/blog\\\/mobile-app-development\\\/resources-android-app-development\\\/\",\"url\":\"https:\\\/\\\/yeeply.com\\\/en\\\/blog\\\/mobile-app-development\\\/resources-android-app-development\\\/\",\"name\":\"Which resources are available for Android app development?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/blog\\\/mobile-app-development\\\/resources-android-app-development\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/blog\\\/mobile-app-development\\\/resources-android-app-development\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/yeeply.com\\\/en\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/resources-android-app-development.png\",\"datePublished\":\"2016-06-21T10:40:43+00:00\",\"dateModified\":\"2020-12-02T16:12:25+00:00\",\"description\":\"Mastering the resources for Android is vital in app design and in android app development. Here we gather all the basics to help you in creating an app. \u261d\ufe0f\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/blog\\\/mobile-app-development\\\/resources-android-app-development\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/yeeply.com\\\/en\\\/blog\\\/mobile-app-development\\\/resources-android-app-development\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/blog\\\/mobile-app-development\\\/resources-android-app-development\\\/#primaryimage\",\"url\":\"https:\\\/\\\/yeeply.com\\\/en\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/resources-android-app-development.png\",\"contentUrl\":\"https:\\\/\\\/yeeply.com\\\/en\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/resources-android-app-development.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/blog\\\/mobile-app-development\\\/resources-android-app-development\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/yeeply.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resources available for Android app development\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/yeeply.com\\\/en\\\/\",\"name\":\"Yeeply\",\"description\":\"A platform for the development of digital projects\",\"publisher\":{\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/yeeply.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/#organization\",\"name\":\"Yeeply\",\"url\":\"https:\\\/\\\/yeeply.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/yeeply.com\\\/en\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/logo_yeeply_black@2x.png\",\"contentUrl\":\"https:\\\/\\\/yeeply.com\\\/en\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/logo_yeeply_black@2x.png\",\"width\":360,\"height\":120,\"caption\":\"Yeeply\"},\"image\":{\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/YeeplyMobile\\\/\",\"https:\\\/\\\/x.com\\\/Yeeply_EN\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/yeeply\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/yeeply.com\\\/en\\\/#\\\/schema\\\/person\\\/c7927839158c47143448f3bcdaf7cc14\",\"name\":\"Yeeply\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f13a8a35567805732422f808376743c5cc1b8918b3dd8f2da231a8306df22006?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f13a8a35567805732422f808376743c5cc1b8918b3dd8f2da231a8306df22006?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f13a8a35567805732422f808376743c5cc1b8918b3dd8f2da231a8306df22006?s=96&d=mm&r=g\",\"caption\":\"Yeeply\"},\"url\":\"https:\\\/\\\/yeeply.com\\\/en\\\/author\\\/yeeply\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Which resources are available for Android app development?","description":"Mastering the resources for Android is vital in app design and in android app development. Here we gather all the basics to help you in creating an app. \u261d\ufe0f","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:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/","og_locale":"en_US","og_type":"article","og_title":"Which resources are available for Android app development?","og_description":"Mastering the resources for Android is vital in app design and in android app development. Here we gather all the basics to help you in creating an app. \u261d\ufe0f","og_url":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/","og_site_name":"Yeeply","article_publisher":"https:\/\/www.facebook.com\/YeeplyMobile\/","article_published_time":"2016-06-21T10:40:43+00:00","article_modified_time":"2020-12-02T16:12:25+00:00","og_image":[{"url":"https:\/\/yeeply.com\/en\/wp-content\/uploads\/2016\/06\/resources-android-app-development.png","type":"","width":"","height":""}],"author":"Yeeply","twitter_card":"summary_large_image","twitter_creator":"@Yeeply_EN","twitter_site":"@Yeeply_EN","twitter_misc":{"Written by":"Yeeply","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/#article","isPartOf":{"@id":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/"},"author":{"name":"Yeeply","@id":"https:\/\/yeeply.com\/en\/#\/schema\/person\/c7927839158c47143448f3bcdaf7cc14"},"headline":"Resources available for Android app development","datePublished":"2016-06-21T10:40:43+00:00","dateModified":"2020-12-02T16:12:25+00:00","mainEntityOfPage":{"@id":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/"},"wordCount":1156,"publisher":{"@id":"https:\/\/yeeply.com\/en\/#organization"},"image":{"@id":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/#primaryimage"},"thumbnailUrl":"https:\/\/yeeply.com\/en\/wp-content\/uploads\/2016\/06\/resources-android-app-development.png","articleSection":["App"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/","url":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/","name":"Which resources are available for Android app development?","isPartOf":{"@id":"https:\/\/yeeply.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/#primaryimage"},"image":{"@id":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/#primaryimage"},"thumbnailUrl":"https:\/\/yeeply.com\/en\/wp-content\/uploads\/2016\/06\/resources-android-app-development.png","datePublished":"2016-06-21T10:40:43+00:00","dateModified":"2020-12-02T16:12:25+00:00","description":"Mastering the resources for Android is vital in app design and in android app development. Here we gather all the basics to help you in creating an app. \u261d\ufe0f","breadcrumb":{"@id":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/#primaryimage","url":"https:\/\/yeeply.com\/en\/wp-content\/uploads\/2016\/06\/resources-android-app-development.png","contentUrl":"https:\/\/yeeply.com\/en\/wp-content\/uploads\/2016\/06\/resources-android-app-development.png"},{"@type":"BreadcrumbList","@id":"https:\/\/yeeply.com\/en\/blog\/mobile-app-development\/resources-android-app-development\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/yeeply.com\/en\/"},{"@type":"ListItem","position":2,"name":"Resources available for Android app development"}]},{"@type":"WebSite","@id":"https:\/\/yeeply.com\/en\/#website","url":"https:\/\/yeeply.com\/en\/","name":"Yeeply","description":"A platform for the development of digital projects","publisher":{"@id":"https:\/\/yeeply.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/yeeply.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/yeeply.com\/en\/#organization","name":"Yeeply","url":"https:\/\/yeeply.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/yeeply.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/yeeply.com\/en\/wp-content\/uploads\/2019\/05\/logo_yeeply_black@2x.png","contentUrl":"https:\/\/yeeply.com\/en\/wp-content\/uploads\/2019\/05\/logo_yeeply_black@2x.png","width":360,"height":120,"caption":"Yeeply"},"image":{"@id":"https:\/\/yeeply.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/YeeplyMobile\/","https:\/\/x.com\/Yeeply_EN","https:\/\/www.linkedin.com\/company\/yeeply"]},{"@type":"Person","@id":"https:\/\/yeeply.com\/en\/#\/schema\/person\/c7927839158c47143448f3bcdaf7cc14","name":"Yeeply","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f13a8a35567805732422f808376743c5cc1b8918b3dd8f2da231a8306df22006?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f13a8a35567805732422f808376743c5cc1b8918b3dd8f2da231a8306df22006?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f13a8a35567805732422f808376743c5cc1b8918b3dd8f2da231a8306df22006?s=96&d=mm&r=g","caption":"Yeeply"},"url":"https:\/\/yeeply.com\/en\/author\/yeeply\/"}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"gform-image-choice-sm":false,"gform-image-choice-md":false,"gform-image-choice-lg":false},"uagb_author_info":{"display_name":"Yeeply","author_link":"https:\/\/yeeply.com\/en\/author\/yeeply\/"},"uagb_comment_info":0,"uagb_excerpt":"&nbsp; Anything we might say will surely sound Chinese to a customer-owner of an app project on which we are working \u2212 when we talk ...","_links":{"self":[{"href":"https:\/\/yeeply.com\/en\/wp-json\/wp\/v2\/posts\/2676","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/yeeply.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/yeeply.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/yeeply.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/yeeply.com\/en\/wp-json\/wp\/v2\/comments?post=2676"}],"version-history":[{"count":0,"href":"https:\/\/yeeply.com\/en\/wp-json\/wp\/v2\/posts\/2676\/revisions"}],"wp:attachment":[{"href":"https:\/\/yeeply.com\/en\/wp-json\/wp\/v2\/media?parent=2676"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/yeeply.com\/en\/wp-json\/wp\/v2\/categories?post=2676"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/yeeply.com\/en\/wp-json\/wp\/v2\/tags?post=2676"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}