{"id":37185,"date":"2024-11-01T09:55:34","date_gmt":"2024-11-01T09:55:34","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37185"},"modified":"2024-11-01T11:36:19","modified_gmt":"2024-11-01T11:36:19","slug":"java-android-app-development-course-app-configuration-file-analysis","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37185\/","title":{"rendered":"Java Android App Development Course, App Configuration File Analysis"},"content":{"rendered":"<p>One of the most important elements in the process of developing an Android app is the app&#8217;s configuration files. In this article, we will analyze the main configuration files used in Android app development and explore how they affect the app&#8217;s operation. Android apps are primarily composed of XML format configuration files and Java code, and we will focus on how these two types of files interact.<\/p>\n<h2>1. Configuration Files of Android Apps<\/h2>\n<p>Configuration files of Android apps can be broadly divided into two categories: manifest files and resource files. These files provide basic information about the app and define various resources such as the app&#8217;s UI, strings, images, and more.<\/p>\n<h3>1.1. Manifest File (AndroidManifest.xml)<\/h3>\n<p>The manifest file is a composite file for Android apps that must contain all the information necessary for the app to function properly. The AndroidManifest.xml file defines the metadata related to the app&#8217;s components (activities, services, broadcast receivers, etc.).<\/p>\n<pre><code class=\"language-xml\">&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;manifest xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    package=\"com.example.myapp\"&gt;\n\n    &lt;application\n        android:allowBackup=\"true\"\n        android:icon=\"@mipmap\/ic_launcher\"\n        android:label=\"@string\/app_name\"\n        android:roundIcon=\"@mipmap\/ic_launcher_round\"\n        android:supportsRtl=\"true\"\n        android:theme=\"@style\/Theme.MyApp\"&gt;\n\n        &lt;activity android:name=\".MainActivity\"&gt;\n            &lt;intent-filter&gt;\n                &lt;action android:name=\"android.intent.action.MAIN\" \/&gt;\n                &lt;category android:name=\"android.intent.category.LAUNCHER\" \/&gt;\n            &lt;\/intent-filter&gt;\n        &lt;\/activity&gt;\n\n    &lt;\/application&gt;\n\n&lt;\/manifest&gt;<\/code><\/pre>\n<p>The code above shows the basic structure of the manifest file. The key elements are as follows:<\/p>\n<ul>\n<li><strong>package:<\/strong> Defines the unique package name of the app.<\/li>\n<li><strong>application:<\/strong> Specifies the app&#8217;s fundamental properties, including icon, theme, label, and more.<\/li>\n<li><strong>activity:<\/strong> Defines the activities that the app will use, specifying the main activity and adding an intent filter to start it.<\/li>\n<\/ul>\n<h3>1.2. Resource Files<\/h3>\n<p>Resource files define various resources related to the app&#8217;s UI and business logic. This includes strings, images, layouts, and styles. Resource files are located within the project&#8217;s \/res directory and support various resolutions and languages through a folder structure.<\/p>\n<h4>1.2.1. String Resources (res\/values\/strings.xml)<\/h4>\n<pre><code class=\"language-xml\">&lt;resources&gt;\n    &lt;string name=\"app_name\"&gt;My App&lt;\/string&gt;\n    &lt;string name=\"welcome_message\"&gt;Welcome!&lt;\/string&gt;\n&lt;\/resources&gt;<\/code><\/pre>\n<p>String resources define strings that can be reused in other UI components, which helps avoid hard-coded strings in layout files.<\/p>\n<h4>1.2.2. Layout Resources (res\/layout\/activity_main.xml)<\/h4>\n<p>Layout files define the UI of the app. In Android, layouts can be defined in XML format.<\/p>\n<pre><code class=\"language-xml\">&lt;LinearLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:orientation=\"vertical\"&gt;\n\n    &lt;TextView\n        android:id=\"@+id\/welcome_text\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"@string\/welcome_message\"\/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/button\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Button\"\/&gt;\n\n&lt;\/LinearLayout&gt;<\/code><\/pre>\n<p>The layout code above defines a LinearLayout arranged vertically. It contains a TextView and a Button, with the TextView using the welcome_message defined in the string resources.<\/p>\n<h2>2. Role of Configuration Files When Running the App<\/h2>\n<p>When an Android app is run, the information in the manifest file is interpreted by the system to meet the app&#8217;s requirements. The activities defined in the manifest serve as the starting point that determines what UI will be shown when the user launches the app. For instance, when the user clicks the app icon, MainActivity is executed based on the MAIN action and LAUNCHER category set in the manifest file.<\/p>\n<p>Resource files seamlessly connect the information of UI components with the business logic. Layout files define how UI elements are arranged, and these elements can be easily referenced in the code.<\/p>\n<h2>3. Comprehensive Example<\/h2>\n<p>Now, through a practical example, we will show how the manifest file and resource files actually work. The complete app is structured to display a welcome message to the user and navigate to another page upon button click.<\/p>\n<h3>3.1. Manifest File (AndroidManifest.xml)<\/h3>\n<pre><code class=\"language-xml\">&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;manifest xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    package=\"com.example.welcomeapp\"&gt;\n\n    &lt;application\n        android:allowBackup=\"true\"\n        android:icon=\"@mipmap\/ic_launcher\"\n        android:label=\"@string\/app_name\"\n        android:roundIcon=\"@mipmap\/ic_launcher_round\"\n        android:supportsRtl=\"true\"\n        android:theme=\"@style\/Theme.AppCompat.Light\"&gt;\n\n        &lt;activity android:name=\".MainActivity\"&gt;\n            &lt;intent-filter&gt;\n                &lt;action android:name=\"android.intent.action.MAIN\" \/&gt;\n                &lt;category android:name=\"android.intent.category.LAUNCHER\" \/&gt;\n            &lt;\/intent-filter&gt;\n        &lt;\/activity&gt;\n\n        &lt;activity android:name=\".SecondActivity\"&gt;&lt;\/activity&gt;\n\n    &lt;\/application&gt;\n\n&lt;\/manifest&gt;<\/code><\/pre>\n<h3>3.2. String Resources (res\/values\/strings.xml)<\/h3>\n<pre><code class=\"language-xml\">&lt;resources&gt;\n    &lt;string name=\"app_name\"&gt;Welcome App&lt;\/string&gt;\n    &lt;string name=\"welcome_message\"&gt;Welcome!&lt;\/string&gt;\n    &lt;string name=\"second_activity_title\"&gt;Second Activity&lt;\/string&gt;\n&lt;\/resources&gt;<\/code><\/pre>\n<h3>3.3. Main Layout (res\/layout\/activity_main.xml)<\/h3>\n<pre><code class=\"language-xml\">&lt;LinearLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:orientation=\"vertical\"&gt;\n\n    &lt;TextView\n        android:id=\"@+id\/welcome_text\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"@string\/welcome_message\"\/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/button\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Next Page\"\/&gt;\n\n&lt;\/LinearLayout&gt;<\/code><\/pre>\n<h3>3.4. Second Layout (res\/layout\/activity_second.xml)<\/h3>\n<pre><code class=\"language-xml\">&lt;LinearLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:orientation=\"vertical\"&gt;\n\n    &lt;TextView\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"@string\/second_activity_title\"\/&gt;\n\n&lt;\/LinearLayout&gt;<\/code><\/pre>\n<h3>3.5. MainActivity.java<\/h3>\n<pre><code class=\"language-java\">package com.example.welcomeapp;\n\nimport android.content.Intent;\nimport android.os.Bundle;\nimport android.view.View;\nimport android.widget.Button;\nimport android.widget.TextView;\nimport androidx.appcompat.app.AppCompatActivity;\n\npublic class MainActivity extends AppCompatActivity {\n    \n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_main);\n\n        TextView welcomeText = findViewById(R.id.welcome_text);\n        Button nextButton = findViewById(R.id.button);\n\n        nextButton.setOnClickListener(new View.OnClickListener() {\n            @Override\n            public void onClick(View v) {\n                Intent intent = new Intent(MainActivity.this, SecondActivity.class);\n                startActivity(intent);\n            }\n        });\n    }\n}<\/code><\/pre>\n<h3>3.6. SecondActivity.java<\/h3>\n<pre><code class=\"language-java\">package com.example.welcomeapp;\n\nimport android.os.Bundle;\nimport androidx.appcompat.app.AppCompatActivity;\n\npublic class SecondActivity extends AppCompatActivity {\n    \n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_second);\n    }\n}<\/code><\/pre>\n<h2>4. Conclusion<\/h2>\n<p>Configuration files play a central role in Android app development and are essential for understanding the app&#8217;s structure and functionality. The manifest file defines how the app is executed and how the components interact, while the resource files provide the necessary elements to adjust what is presented to the user. Understanding their relationships is key to successful app development.<\/p>\n<p>Although analyzing the configuration files of an Android app can be challenging, I hope this article is helpful. It aims to enhance your understanding of how each component connects to complete the app, leading to more effective app development.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>One of the most important elements in the process of developing an Android app is the app&#8217;s configuration files. In this article, we will analyze the main configuration files used in Android app development and explore how they affect the app&#8217;s operation. Android apps are primarily composed of XML format configuration files and Java code, &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37185\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Java Android App Development Course, App Configuration File Analysis&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[137],"tags":[],"class_list":["post-37185","post","type-post","status-publish","format-standard","hentry","category-java-android-app-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Java Android App Development Course, App Configuration File Analysis - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/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:\/\/atmokpo.com\/w\/37185\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Java Android App Development Course, App Configuration File Analysis - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"One of the most important elements in the process of developing an Android app is the app&#8217;s configuration files. In this article, we will analyze the main configuration files used in Android app development and explore how they affect the app&#8217;s operation. Android apps are primarily composed of XML format configuration files and Java code, &hellip; \ub354 \ubcf4\uae30 &quot;Java Android App Development Course, App Configuration File Analysis&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37185\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:55:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:36:19+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"6\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37185\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37185\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Java Android App Development Course, App Configuration File Analysis\",\"datePublished\":\"2024-11-01T09:55:34+00:00\",\"dateModified\":\"2024-11-01T11:36:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37185\/\"},\"wordCount\":627,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Java Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37185\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37185\/\",\"name\":\"Java Android App Development Course, App Configuration File Analysis - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:55:34+00:00\",\"dateModified\":\"2024-11-01T11:36:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37185\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37185\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37185\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Android App Development Course, App Configuration File Analysis\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Java Android App Development Course, App Configuration File Analysis - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/37185\/","og_locale":"ko_KR","og_type":"article","og_title":"Java Android App Development Course, App Configuration File Analysis - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"One of the most important elements in the process of developing an Android app is the app&#8217;s configuration files. In this article, we will analyze the main configuration files used in Android app development and explore how they affect the app&#8217;s operation. Android apps are primarily composed of XML format configuration files and Java code, &hellip; \ub354 \ubcf4\uae30 \"Java Android App Development Course, App Configuration File Analysis\"","og_url":"https:\/\/atmokpo.com\/w\/37185\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:55:34+00:00","article_modified_time":"2024-11-01T11:36:19+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"6\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37185\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37185\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Java Android App Development Course, App Configuration File Analysis","datePublished":"2024-11-01T09:55:34+00:00","dateModified":"2024-11-01T11:36:19+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37185\/"},"wordCount":627,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Java Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37185\/","url":"https:\/\/atmokpo.com\/w\/37185\/","name":"Java Android App Development Course, App Configuration File Analysis - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:55:34+00:00","dateModified":"2024-11-01T11:36:19+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37185\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37185\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37185\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Java Android App Development Course, App Configuration File Analysis"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37185","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=37185"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37185\/revisions"}],"predecessor-version":[{"id":37186,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37185\/revisions\/37186"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37185"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37185"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37185"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}