{"id":4059,"date":"2009-12-21T12:48:36","date_gmt":"2009-12-21T07:18:36","guid":{"rendered":"http:\/\/mobisoftinfotech.com\/?p=4059"},"modified":"2021-04-27T13:25:01","modified_gmt":"2021-04-27T07:55:01","slug":"android-project-structure","status":"publish","type":"post","link":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure","title":{"rendered":"Android Project structure"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p><strong>PROJECT STRUCTURE:<\/strong><\/p>\n<p>When new Android Application created. It use specific directory tree structure showing in eclipse SDK platform .There are Eight key items show in project tree structure as follows<\/p>\n<p>1. AndroidManifest.Xml<\/p>\n<p>2. bulid.xml<\/p>\n<p>3. bin\/<\/p>\n<p>4. libs<\/p>\n<p>5. src\/<\/p>\n<p>6. res\/<\/p>\n<p>7. assests<\/p>\n<p>8. gen<\/p>\n<p style=\"text-align: center;\"><noscript><img decoding=\"async\" src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2009\/12\/project-structure.bmp\" alt=\"project structure\"><\/noscript><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" alt=\"project structure\" data-src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2009\/12\/project-structure.bmp\" class=\" lazyload\"><\/p>\n<p><strong>AndroidManifest.xml :<\/strong><\/p>\n<p>When creating Android <code>application<\/code> must have an AndroidManifest.xml file in its root directory. It is an XML file describing the application being built and it contains activity, services, uses permission etc.<\/p>\n<p>When creating a new project automatically generated file in project it contains only single main activity of project.<\/p>\n<ul>\n<li>It describes the components of the application\u201a the activities, services, broadcast receivers, and content providers that the application is composed of. It names the classes that implement each of the components and publishes their capabilities .These declarations let the Android system know what the components are and under what conditions they can be launched.<\/li>\n<\/ul>\n<ul>\n<li>IN AndroidManifest.xml \u00ac\u2020<strong>uses-permission<\/strong> elements, to indicate what permissions your application will need in order to function properly,<\/li>\n<\/ul>\n<p>Example<\/p>\n<p><code>android.permission.CALL_EMERGENCY_NUMBERS<br>\nandroid.permission.READ_CONTACT<br>\nandroid.permission.SET_WALLPAPER.<\/code><\/p>\n<ul>\n<li><strong>permission<\/strong> elements, to declare permissions that activities or services might require other applications hold in order to use your application&#8217;s data or logic \u201a<\/li>\n<li><strong>instrumentation<\/strong> elements, to indicate code that should be invoked on key system events, such as starting up activities, for the purposes of logging or monitoring<\/li>\n<li><strong>uses-library<\/strong> elements, to hook in optional Android components, such as mapping services<\/li>\n<li>its declares the minimum level of the Android API that used in applications as well as it declare verion name and version code just like<\/li>\n<\/ul>\n<p>Example<\/p>\n<p>android:versionCode=<em>&#8220;1&#8221;<\/em><\/p>\n<p><em>android:minSdkVersion=<\/em><em>&#8220;3&#8221;<\/em><\/p>\n<p>android:versionName=<em>&#8220;1.0&#8221;<\/em><\/p>\n<p><strong>Build.Xml:<\/strong><\/p>\n<p>It is an ANT script for compiling the application and installing on the device.<\/p>\n<p><strong>BIN \/:<\/strong><\/p>\n<p>When you compile your project (via ant or the IDE), the results go into the bin\/ directory under your project root.<\/p>\n<p>bin\/classes\/ holds the compiled Java classes<\/p>\n<p>Bin\/classes.dex holds the executable created from those compiled Java classes<\/p>\n<p>bin\/nameapp.ap_ holds your application&#8217;s resources, packaged as a ZIP file<\/p>\n<p>bin\/namedebug.apk or bin\/nameapp-unsigned.apk is the actual Android application (where nameap is the name of your application)<\/p>\n<p>The .apk file is a ZIP archive containing the .dex file, the compiled edition of your resources, any un-compiled resources (such as what you put in and the AndroidManifest.xml file. )<\/p>\n<p><strong>SRC\/:<\/strong><\/p>\n<p>It contains all source code file (.java file) of android application. E.g hello_world.java<\/p>\n<p><strong>RES\/:<\/strong><\/p>\n<p>Resources are to store all external contents that used in android applications.<\/p>\n<p>These are external elements that you want to include and reference within your application, like images, audio, video, text strings, layouts, themes, etc.It contains all resources that are used in android application<\/p>\n<p><em>Root directory<\/em>:<\/p>\n<ol>\n<li><strong>res\/drawable <\/strong>: its contain images ,pictures (png, jpeg etc) e.g. .icon.png<\/li>\n<li><strong>res\/layout<\/strong> : contains XML(User Interface) that UI layout used in Project or view window of an application.(E.g. main.xml)<\/li>\n<li><strong>res\/Values <\/strong>: it declare Arrays, colors, dimensions, strings, and styles.(E.g. strings.xml)<\/li>\n<li><strong>res\/raw <\/strong>: it contains non-complied file (e.g. Audio file .mp3, video file .mpg)<\/li>\n<\/ol>\n<p>E.g. it create an xml file \u00ac\u2020in values directory<\/p>\n<p>&lt;?xml version=<em>&#8220;1.0&#8221;<\/em> encoding=<em>&#8220;utf-8&#8221;<\/em>?&gt;<\/p>\n<p>&lt;resources&gt;<\/p>\n<p>&lt;string name=<em>&#8220;hello&#8221;<\/em>&gt;Welcome to Mobisoft Infotech! &lt;\/string&gt;<\/p>\n<p>&lt;string name=<em>&#8220;app_name&#8221;<\/em>&gt;Hello world&lt;\/string&gt;<\/p>\n<p>&lt;\/resources&gt;<\/p>\n<p><strong>ASSETS:<\/strong><\/p>\n<p>Assets it also store an external content refer in android applications. Just like images, audio, video, text strings .It same as resources but different in assets directory will maintain its raw file format and, in order to read it, you must use the <a href=\"https:\/\/mobisoftinfotech.com\/resources\/\"><strong><em>AssetManager<\/em> <\/strong><\/a>to read the file as a stream of bytes. So keeping files and data in resources (res\/) makes them easily accessible.<\/p>\n<p><strong>libs\/:<\/strong><\/p>\n<p>It&#8217;s holds any third-party Java JARs your application Requires.<\/p>\n<p><strong>GEN:<\/strong><\/p>\n<p>In Eclipse create an application that time auto generated R.java file in gen directory. The R.java file is an index (id) into all the resources defined in the file. This class files use in source code file or it gives for reference or location user interface object that uses in sources code.<\/p>\n<p>Imp Note: Don&#8217;t change any code or id (assign value).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; PROJECT STRUCTURE: When new Android Application created. It use specific directory tree structure showing in eclipse SDK platform .There are Eight key items show in project tree structure as follows 1. AndroidManifest.Xml 2. bulid.xml 3. bin\/ 4. libs 5. src\/ 6. res\/ 7. assests 8. gen AndroidManifest.xml : When creating Android application must have [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":14300,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_s2mail":"yes","footnotes":""},"categories":[4],"tags":[28,29,30],"class_list":["post-4059","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-android","tag-android-manifest-xml","tag-android-project-structure","tag-gen"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Android Project structure - Mobisoft Infotech<\/title>\n<meta name=\"description\" content=\"When new Android Application created, it uses specific directory tree structure showing in eclipse SDK platform.Following is project tree structure.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Android Project structure - Mobisoft Infotech\" \/>\n<meta property=\"og:description\" content=\"When new Android Application created, it uses specific directory tree structure showing in eclipse SDK platform.Following is project tree structure.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure\" \/>\n<meta property=\"og:site_name\" content=\"Mobisoft Infotech\" \/>\n<meta property=\"article:published_time\" content=\"2009-12-21T07:18:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-04-27T07:55:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2009\/12\/Project-Structure.png\" \/>\n\t<meta property=\"og:image:width\" content=\"855\" \/>\n\t<meta property=\"og:image:height\" content=\"363\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Sandip Patil\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sandip Patil\" \/>\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:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#article\",\"isPartOf\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure\"},\"author\":{\"name\":\"Sandip Patil\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/5e077b5474644482f5d3dd2f75879201\"},\"headline\":\"Android Project structure\",\"datePublished\":\"2009-12-21T07:18:36+00:00\",\"dateModified\":\"2021-04-27T07:55:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure\"},\"wordCount\":698,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#primaryimage\"},\"thumbnailUrl\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2009\/12\/Project-Structure.png\",\"keywords\":[\"Android Manifest.xml\",\"Android Project Structure\",\"Gen\"],\"articleSection\":[\"Android\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure\",\"name\":\"Android Project structure - Mobisoft Infotech\",\"isPartOf\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#primaryimage\"},\"image\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#primaryimage\"},\"thumbnailUrl\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2009\/12\/Project-Structure.png\",\"datePublished\":\"2009-12-21T07:18:36+00:00\",\"dateModified\":\"2021-04-27T07:55:01+00:00\",\"author\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/5e077b5474644482f5d3dd2f75879201\"},\"description\":\"When new Android Application created, it uses specific directory tree structure showing in eclipse SDK platform.Following is project tree structure.\",\"breadcrumb\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#primaryimage\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2009\/12\/Project-Structure.png\",\"contentUrl\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2009\/12\/Project-Structure.png\",\"width\":855,\"height\":363,\"caption\":\"Project Structure\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mobisoftinfotech.com\/resources\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Android Project structure\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#website\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/\",\"name\":\"Mobisoft Infotech\",\"description\":\"Discover Mobility\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/mobisoftinfotech.com\/resources\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/5e077b5474644482f5d3dd2f75879201\",\"name\":\"Sandip Patil\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/37d4ae1dcb3f5e6419095db1694bee95aace154a5e2f2dc0598c756d7a98f8fd?s=96&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/37d4ae1dcb3f5e6419095db1694bee95aace154a5e2f2dc0598c756d7a98f8fd?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/37d4ae1dcb3f5e6419095db1694bee95aace154a5e2f2dc0598c756d7a98f8fd?s=96&r=g\",\"caption\":\"Sandip Patil\"},\"sameAs\":[\"http:\/\/www.mobisoftinfotech.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Android Project structure - Mobisoft Infotech","description":"When new Android Application created, it uses specific directory tree structure showing in eclipse SDK platform.Following is project tree structure.","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:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure","og_locale":"en_US","og_type":"article","og_title":"Android Project structure - Mobisoft Infotech","og_description":"When new Android Application created, it uses specific directory tree structure showing in eclipse SDK platform.Following is project tree structure.","og_url":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure","og_site_name":"Mobisoft Infotech","article_published_time":"2009-12-21T07:18:36+00:00","article_modified_time":"2021-04-27T07:55:01+00:00","og_image":[{"width":855,"height":363,"url":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2009\/12\/Project-Structure.png","type":"image\/png"}],"author":"Sandip Patil","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Sandip Patil","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#article","isPartOf":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure"},"author":{"name":"Sandip Patil","@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/5e077b5474644482f5d3dd2f75879201"},"headline":"Android Project structure","datePublished":"2009-12-21T07:18:36+00:00","dateModified":"2021-04-27T07:55:01+00:00","mainEntityOfPage":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure"},"wordCount":698,"commentCount":0,"image":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#primaryimage"},"thumbnailUrl":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2009\/12\/Project-Structure.png","keywords":["Android Manifest.xml","Android Project Structure","Gen"],"articleSection":["Android"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure","url":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure","name":"Android Project structure - Mobisoft Infotech","isPartOf":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#primaryimage"},"image":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#primaryimage"},"thumbnailUrl":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2009\/12\/Project-Structure.png","datePublished":"2009-12-21T07:18:36+00:00","dateModified":"2021-04-27T07:55:01+00:00","author":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/5e077b5474644482f5d3dd2f75879201"},"description":"When new Android Application created, it uses specific directory tree structure showing in eclipse SDK platform.Following is project tree structure.","breadcrumb":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#primaryimage","url":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2009\/12\/Project-Structure.png","contentUrl":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2009\/12\/Project-Structure.png","width":855,"height":363,"caption":"Project Structure"},{"@type":"BreadcrumbList","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/android-project-structure#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mobisoftinfotech.com\/resources\/"},{"@type":"ListItem","position":2,"name":"Android Project structure"}]},{"@type":"WebSite","@id":"https:\/\/mobisoftinfotech.com\/resources\/#website","url":"https:\/\/mobisoftinfotech.com\/resources\/","name":"Mobisoft Infotech","description":"Discover Mobility","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mobisoftinfotech.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/5e077b5474644482f5d3dd2f75879201","name":"Sandip Patil","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/37d4ae1dcb3f5e6419095db1694bee95aace154a5e2f2dc0598c756d7a98f8fd?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/37d4ae1dcb3f5e6419095db1694bee95aace154a5e2f2dc0598c756d7a98f8fd?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/37d4ae1dcb3f5e6419095db1694bee95aace154a5e2f2dc0598c756d7a98f8fd?s=96&r=g","caption":"Sandip Patil"},"sameAs":["http:\/\/www.mobisoftinfotech.com"]}]}},"_links":{"self":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/4059","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/comments?post=4059"}],"version-history":[{"count":12,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/4059\/revisions"}],"predecessor-version":[{"id":22766,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/4059\/revisions\/22766"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/media\/14300"}],"wp:attachment":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/media?parent=4059"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/categories?post=4059"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/tags?post=4059"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}