{"id":37021,"date":"2024-11-01T09:54:08","date_gmt":"2024-11-01T09:54:08","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37021"},"modified":"2024-11-01T11:42:34","modified_gmt":"2024-11-01T11:42:34","slug":"course-titlekotlin-android-app-development-understanding-intents","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37021\/","title":{"rendered":"course title=&#8221;Kotlin Android App Development, Understanding Intents&#8221;"},"content":{"rendered":"<p>Today, we will take a closer look at &#8216;Intent&#8217;, a very important concept in Android app development. Intents are responsible for interactions between app components and are used to start other Activities or to call services, broadcast receivers, etc.<\/p>\n<h2>1. What is Intent?<\/h2>\n<p>An Intent is a message object that manages interactions between the components of an application. For instance, when a user wants to move to another Activity by clicking a button, an Intent is used. Intents are divided into two main types.<\/p>\n<ul>\n<li><strong>Explicit Intent:<\/strong> An intent that specifies a particular component to start. It is generally used to call another Activity within the same application.<\/li>\n<li><strong>Implicit Intent:<\/strong> An intent that does not specify a particular component but requests the system to find an appropriate component. This allows various applications or services to be called.<\/li>\n<\/ul>\n<h2>2. Components of Intent<\/h2>\n<p>An Intent consists of the following main components.<\/p>\n<ul>\n<li><strong>Action:<\/strong> Defines the action to be performed. For example, <code>Intent.ACTION_VIEW<\/code> means the user wants to view a URL.<\/li>\n<li><strong>Data:<\/strong> Includes the URI of the data to be passed. For example, it could be a link to a specific webpage.<\/li>\n<li><strong>Category:<\/strong> Describes what kind of component the intent will invoke. For example, <code>Intent.CATEGORY_DEFAULT<\/code> is a category for general intents.<\/li>\n<li><strong>Component Name:<\/strong> The explicit name of the component to be called. It includes the package name and class name.<\/li>\n<li><strong>Extras:<\/strong> Key-value pairs for passing additional data.<\/li>\n<\/ul>\n<h2>3. Using Explicit Intents<\/h2>\n<p>To use an explicit intent, you must specify the class name of the Activity to be called. Below is a simple example code.<\/p>\n<pre><code class=\"language-kotlin\">class MainActivity : AppCompatActivity() {\n    override fun onCreate(savedInstanceState: Bundle?) {\n        super.onCreate(savedInstanceState)\n        setContentView(R.layout.activity_main)\n\n        val button = findViewById<button>(R.id.button_navigate)\n        button.setOnClickListener {\n            val intent = Intent(this, SecondActivity::class.java)\n            startActivity(intent)\n        }\n    }\n}\n<\/button><\/code><\/pre>\n<p>The above code creates an explicit intent that navigates to <code>SecondActivity<\/code> when the button is clicked. It executes the intent by calling the <code>startActivity(intent)<\/code> method.<\/p>\n<h2>4. Using Implicit Intents<\/h2>\n<p>An implicit intent allows you to request actions that can be handled by other applications. For instance, you can open a webpage or invoke a camera app. Below is an example of opening a webpage.<\/p>\n<pre><code class=\"language-kotlin\">val openWebPageIntent = Intent(Intent.ACTION_VIEW, Uri.parse(\"https:\/\/www.example.com\"))\nstartActivity(openWebPageIntent)\n<\/code><\/pre>\n<p>The above code opens the default web browser and navigates to <code>https:\/\/www.example.com<\/code> when clicked by the user. To use an implicit intent, include the action of the intent along with the data URI.<\/p>\n<h2>5. Intent Filter<\/h2>\n<p>An intent filter defines what components can match with an implicit intent. Intent filters are defined within the manifest file and specify what kind of intents an activity can handle.<\/p>\n<pre><code class=\"language-xml\">&lt;activity android:name=\".SecondActivity\"&gt;\n    &lt;intent-filter&gt;\n        &lt;action android:name=\"android.intent.action.VIEW\"\/&gt;\n        &lt;category android:name=\"android.intent.category.DEFAULT\"\/&gt;\n        &lt;data android:scheme=\"http\" android:host=\"www.example.com\"\/&gt;\n    &lt;\/intent-filter&gt;\n&lt;\/activity&gt;\n<\/code><\/pre>\n<p>The above code sets up <code>SecondActivity<\/code> to handle links to <code>http:\/\/www.example.com<\/code>. Now, when a user sends an intent to open that site, <code>SecondActivity<\/code> will be invoked.<\/p>\n<h2>6. Passing Data with Intent<\/h2>\n<p>You can pass data (e.g., strings, numbers, etc.) to another Activity through an Intent. Below is an example showing how to pass data.<\/p>\n<pre><code class=\"language-kotlin\">val intent = Intent(this, SecondActivity::class.java)\nintent.putExtra(\"EXTRA_MESSAGE\", \"Hello from MainActivity\")\nstartActivity(intent)\n<\/code><\/pre>\n<p>The above code passes a string using the key <code>EXTRA_MESSAGE<\/code>. Here is how to receive this data in <code>SecondActivity<\/code>.<\/p>\n<pre><code class=\"language-kotlin\">class SecondActivity : AppCompatActivity() {\n    override fun onCreate(savedInstanceState: Bundle?) {\n        super.onCreate(savedInstanceState)\n        setContentView(R.layout.activity_second)\n\n        val message = intent.getStringExtra(\"EXTRA_MESSAGE\")\n        val textView = findViewById<textview>(R.id.textView)\n        textView.text = message\n    }\n}\n<\/textview><\/code><\/pre>\n<p>The above code is an example of receiving a message sent from <code>MainActivity<\/code> in <code>SecondActivity<\/code>. You can use the <code>getStringExtra()<\/code> method of the Intent object to receive the data.<\/p>\n<h2>7. Setting Intent Behavior with Flags<\/h2>\n<p>Intent flags control the behavior when executing an intent. For example, if you want to destroy existing activities when starting a new Activity, you can use the <code>FLAG_ACTIVITY_NEW_TASK<\/code> flag. Below is an example of setting flags.<\/p>\n<pre><code class=\"language-kotlin\">val intent = Intent(this, MainActivity::class.java)\nintent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)\nstartActivity(intent)\n<\/code><\/pre>\n<p>The above code sets the behavior to delete all previous Activities while moving to <code>MainActivity<\/code>.<\/p>\n<h2>8. Returning Results: StartActivityForResult<\/h2>\n<p>If you want to start an Activity and receive a result back from it, you need to use the <code>startActivityForResult()<\/code> method. Below is a simple example.<\/p>\n<pre><code class=\"language-kotlin\">override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {\n    super.onActivityResult(requestCode, resultCode, data)\n    if (requestCode == REQUEST_CODE &amp;&amp; resultCode == Activity.RESULT_OK) {\n        val result = data?.getStringExtra(\"RESULT_DATA\")\n        \/\/ Process the result\n    }\n}\n<\/code><\/pre>\n<p>This method allows you to handle the result when called by the invoked Activity. Here, <code>REQUEST_CODE<\/code> is a constant defined to distinguish which request it is.<\/p>\n<h2>9. Conclusion<\/h2>\n<p>In this tutorial, we covered various topics ranging from the basic concept of intents, usage of explicit and implicit intents, intent filters, data passing, use of flags, and result handling. Intents are essential elements in designing Android apps, and I hope this tutorial enables you to further explore app development using various intents.<\/p>\n<h2>10. Additional Resources<\/h2>\n<p>Below are links where you can find more information about intents:<\/p>\n<ul>\n<li><a href=\"https:\/\/developer.android.com\/reference\/android\/content\/Intent\">Android Developers &#8211; Intent Reference<\/a><\/li>\n<li><a href=\"https:\/\/developer.android.com\/guide\/components\/intents-filters\">Android Developers &#8211; Intents and Intent Filters<\/a><\/li>\n<\/ul>\n<p>Thus concludes the Android app development tutorial using Kotlin, Understanding Intents. If you have any questions or comments, please leave them in the comments!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today, we will take a closer look at &#8216;Intent&#8217;, a very important concept in Android app development. Intents are responsible for interactions between app components and are used to start other Activities or to call services, broadcast receivers, etc. 1. What is Intent? An Intent is a message object that manages interactions between the components &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37021\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;course title=&#8221;Kotlin Android App Development, Understanding Intents&#8221;&#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":[143],"tags":[],"class_list":["post-37021","post","type-post","status-publish","format-standard","hentry","category-kotlin-android-app-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>course title=&quot;Kotlin Android App Development, Understanding Intents&quot; - \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\/37021\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"course title=&quot;Kotlin Android App Development, Understanding Intents&quot; - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Today, we will take a closer look at &#8216;Intent&#8217;, a very important concept in Android app development. Intents are responsible for interactions between app components and are used to start other Activities or to call services, broadcast receivers, etc. 1. What is Intent? An Intent is a message object that manages interactions between the components &hellip; \ub354 \ubcf4\uae30 &quot;course title=&#8221;Kotlin Android App Development, Understanding Intents&#8221;&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37021\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:54:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:42:34+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=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37021\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37021\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"course title=&#8221;Kotlin Android App Development, Understanding Intents&#8221;\",\"datePublished\":\"2024-11-01T09:54:08+00:00\",\"dateModified\":\"2024-11-01T11:42:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37021\/\"},\"wordCount\":691,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Kotlin Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37021\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37021\/\",\"name\":\"course title=\\\"Kotlin Android App Development, Understanding Intents\\\" - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:54:08+00:00\",\"dateModified\":\"2024-11-01T11:42:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37021\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37021\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37021\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"course title=&#8221;Kotlin Android App Development, Understanding Intents&#8221;\"}]},{\"@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":"course title=\"Kotlin Android App Development, Understanding Intents\" - \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\/37021\/","og_locale":"ko_KR","og_type":"article","og_title":"course title=\"Kotlin Android App Development, Understanding Intents\" - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Today, we will take a closer look at &#8216;Intent&#8217;, a very important concept in Android app development. Intents are responsible for interactions between app components and are used to start other Activities or to call services, broadcast receivers, etc. 1. What is Intent? An Intent is a message object that manages interactions between the components &hellip; \ub354 \ubcf4\uae30 \"course title=&#8221;Kotlin Android App Development, Understanding Intents&#8221;\"","og_url":"https:\/\/atmokpo.com\/w\/37021\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:54:08+00:00","article_modified_time":"2024-11-01T11:42:34+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":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37021\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37021\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"course title=&#8221;Kotlin Android App Development, Understanding Intents&#8221;","datePublished":"2024-11-01T09:54:08+00:00","dateModified":"2024-11-01T11:42:34+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37021\/"},"wordCount":691,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Kotlin Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37021\/","url":"https:\/\/atmokpo.com\/w\/37021\/","name":"course title=\"Kotlin Android App Development, Understanding Intents\" - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:54:08+00:00","dateModified":"2024-11-01T11:42:34+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37021\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37021\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37021\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"course title=&#8221;Kotlin Android App Development, Understanding Intents&#8221;"}]},{"@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\/37021","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=37021"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37021\/revisions"}],"predecessor-version":[{"id":37022,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37021\/revisions\/37022"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37021"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37021"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37021"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}