

{"id":77738,"date":"2020-05-03T10:00:54","date_gmt":"2020-05-03T04:30:54","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=77738"},"modified":"2021-08-25T13:56:24","modified_gmt":"2021-08-25T08:26:24","slug":"android-manifest-file","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/","title":{"rendered":"Android Manifest File &#8211; androidmanifest xml"},"content":{"rendered":"<p>In this article, we\u2019ll understand the <strong>Android Manifest file<\/strong>. As we know that every android project that we make, need to have an Android Manifest file within. This file is present in the root of the project source set. The reason why it is a must to have it is that it describes all the important information of the application to the Android build tools.<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-77740\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest.jpg\" alt=\"Android Manifest File\" width=\"802\" height=\"420\" srcset=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest.jpg 802w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest-150x79.jpg 150w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest-300x157.jpg 300w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest-768x402.jpg 768w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest-520x272.jpg 520w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><\/a><\/p>\n<h2>Android Manifest File<\/h2>\n<p>The manifest file in Android is generally created automatically as soon as the app is built in Android Studio.<\/p>\n<p><strong>Structure of a Manifest file in Android is:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;manifest&gt;\r\n   &lt;application&gt;\r\n&lt;activity android:name=\"com.example.applicationname.MainActivity\" &gt;\r\n    \t&lt;\/activity&gt;\r\n   &lt;\/application&gt;\r\n&lt;\/manifest&gt;\r\n<\/pre>\n<p>The information that is stored in the Manifest file is as follows:<\/p>\n<ul>\n<li>The name of the application\u2019s package, it is generally the code\u2019s namespace. This information is used to determine the location of the code while building the project.<\/li>\n<li>Another component is the one, that includes all the activities, services, receivers, and content providers.<\/li>\n<li>The permissions that are required by the application to access the protected parts of the system and other apps.<\/li>\n<li>The features required by the app, that affect which devices can install the app from Google Play. These features include both hardware and software features.<\/li>\n<li>It also specifies the application metadata, which includes the icon, version number, themes, etc.<\/li>\n<\/ul>\n<p>The android manifest.xml file generally looks like the following:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\r\n&lt;manifest xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\r\n   package=\"com.example.myfirstapplication\"&gt;\r\n\r\n   &lt;application\r\n       android:allowBackup=\"true\"\r\n       android:icon=\"@mipmap\/ic_launcher\"\r\n       android:label=\"@string\/app_name\"\r\n       android:roundIcon=\"@mipmap\/ic_launcher_round\"\r\n       android:supportsRtl=\"true\"\r\n       android:theme=\"@style\/AppTheme\"&gt;\r\n       &lt;activity android:name=\".MainActivity\"&gt;\r\n           &lt;intent-filter&gt;\r\n               &lt;action android:name=\"android.intent.action.MAIN\" \/&gt;\r\n               &lt;category android:name=\"android.intent.category.LAUNCHER\" \/&gt;\r\n           &lt;\/intent-filter&gt;\r\n       &lt;\/activity&gt;\r\n       &lt;meta-data\r\n           android:name=\"preloaded_fonts\"\r\n           android:resource=\"@array\/preloaded_fonts\" \/&gt;\r\n   &lt;\/application&gt;\r\n\r\n&lt;\/manifest&gt;<\/pre>\n<h2>Element Tags of Manifest File<\/h2>\n<p>Following are the essential element tags of Manifest.xml files:<\/p>\n<p><strong>1. &lt;manifest&gt;<\/strong><br \/>\nIt is the root element of this element. It consists of a package attribute package that tells the activity\u2019s package name.<\/p>\n<p><strong>2. &lt;application&gt;<\/strong><br \/>\nIt is the subelement of the manifest file that includes the declaration of the namespace. It contains certain attributes. These attributes declare the application components, and these attributes include:<\/p>\n<ul>\n<li>icon<\/li>\n<li>allowBackup<\/li>\n<li>label<\/li>\n<li>theme<\/li>\n<\/ul>\n<p><strong>3. &lt;activity&gt;<\/strong><br \/>\nActivity is a subelement of application. It has the declaration of the activity that must be there in the manifest file. It also has certain attributes like name, label, theme, etc.<\/p>\n<p><strong>4. &lt;intent-filter&gt;<\/strong><br \/>\nIt is an element in the activity, it describes the type of <a href=\"https:\/\/data-flair.training\/blogs\/android-intent\/\">intent<\/a> in which the Android components can respond.<\/p>\n<p><strong>5. &lt;action&gt;<\/strong><br \/>\nThis element provides an action for the intent filter. Each intent filter must have at least one action element in it.<\/p>\n<p><strong>6. &lt;category&gt;<\/strong><br \/>\nThis element adds the category name in an intent-filter.<\/p>\n<p><strong>7. &lt;service&gt;<\/strong><br \/>\nThis element contains the operations that are provided by libraries or APIs.<\/p>\n<h2>Manifest File Application Property Elements<\/h2>\n<p>Following is a list of important Application Property Elements in manifest.xml (Sub- Node Elements)<\/p>\n<p><strong>1. &lt;uses-permission&gt;:<\/strong> This element specifies the Android Manifest permissions that are requested for the purpose of security.<br \/>\n<strong>2. &lt;permission&gt;:<\/strong> This element sets permission to provide access to control for some components of the app.<br \/>\n<strong>3. &lt;permission-groups&gt;:<\/strong> This element sets permission to provide access to control for a set of components of the app.<br \/>\n<strong>4. &lt;permission-tree&gt;:<\/strong> This element refers to a specific component that is the owner of the set of components.<br \/>\n<strong>5. &lt;instrumentation&gt;:<\/strong> This element tells the interaction between the app and the system.<br \/>\n<strong>6. &lt;uses-sdk&gt;:<\/strong> This one specifies the compatibility of the app.<br \/>\n<strong>7. &lt;uses-configuration&gt;:<\/strong> This element specifies the permissions that are requested for the purpose of security.<br \/>\n<strong>8. &lt;uses-feature&gt;:<\/strong> This element specifies one hardware or software feature that is required by the Application.<br \/>\n<strong>9. &lt;supports-screen, compatible-screen&gt;:<\/strong> These elements tell the screen size and configuration.<\/p>\n<h2>How to set Manifest File Permissions in Android?<\/h2>\n<p>Now in this part of the tutorial, we\u2019ll see how to set permission in a Manifest file.<\/p>\n<p>An android application must get some permissions to get access to other apps or the Internet. While we build our app, the manifest file gets automatically generated as manifest.xml. This manifest file contains permissions that are configured by us. A few permissions are applied by default if there is no permission provided by us.<\/p>\n<p>These are written in the manifest file as:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;manifest &gt;\r\n&lt;uses-permission ...\/&gt;\r\n...\r\n&lt;manifest &gt;<\/pre>\n<p>The permission mentioned in the manifest file can be either granted or rejected by the users. Once the user grants permission to the app, the app can use the protected features. If the user denies permission the app doesn\u2019t get permission to access the protected features.<\/p>\n<p>The following permissions are added by default and set to TRUE:<\/p>\n<ul>\n<li>INTERNET<\/li>\n<li>ACCESS_NETWORK_STATE<\/li>\n<li>READ_PHONE_STATE<\/li>\n<\/ul>\n<p>There are many permissions that are set to FALSE by default but can be set to TRUE as per requirements. A few of these permissions are as follows:<\/p>\n<table>\n<tbody>\n<tr>\n<td><span style=\"font-weight: 400\">ACCESS_WIFI_STATE<\/span><\/td>\n<td><span style=\"font-weight: 400\">AUTHENTICATE_ACCOUNT<\/span><\/td>\n<td><span style=\"font-weight: 400\">BLUETOOTH<\/span><\/td>\n<td><span style=\"font-weight: 400\">BATTERY_STATS<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">BIND_APPWIDGET<\/span><\/td>\n<td><span style=\"font-weight: 400\">BROADCAST_WAP_PUSH<\/span><\/td>\n<td><span style=\"font-weight: 400\">BROADCAST_STICKY<\/span><\/td>\n<td><span style=\"font-weight: 400\">BIND_INPUT_METHOD<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">CALL_PHONE<\/span><\/td>\n<td><span style=\"font-weight: 400\">CHANGE_CONFIGURATION<\/span><\/td>\n<td><span style=\"font-weight: 400\">CAMERA<\/span><\/td>\n<td><span style=\"font-weight: 400\">CLEAR_APP_DATA<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">CHANGE_WIFI_STATE<\/span><\/td>\n<td><span style=\"font-weight: 400\">CLEAR_APP_USER_DATA<\/span><\/td>\n<td><span style=\"font-weight: 400\">DEVICE_POWER<\/span><\/td>\n<td><span style=\"font-weight: 400\">DELETE_CACHE_FILES<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">DISABLE_KEYGUARD<\/span><\/td>\n<td><span style=\"font-weight: 400\">DELETE_PACKAGES<\/span><\/td>\n<td><span style=\"font-weight: 400\">EXPAND_STATUS_BAR<\/span><\/td>\n<td><span style=\"font-weight: 400\">EXPAND_STATUS_BAR<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">FACTORY_TEST<\/span><\/td>\n<td><span style=\"font-weight: 400\">GET_PACKAGE_SIZE<\/span><\/td>\n<td><span style=\"font-weight: 400\">FLASHLIGHT<\/span><\/td>\n<td><span style=\"font-weight: 400\">GLOBAL_SEARCH<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">HARDWARE_TEST<\/span><\/td>\n<td><span style=\"font-weight: 400\">INTERNAL_SYSTEM_PROCESSES<\/span><\/td>\n<td><span style=\"font-weight: 400\">USE_CREDENTIALS<\/span><\/td>\n<td><span style=\"font-weight: 400\">MANAGE_ACCOUNTS<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">MANAGE_APP_TOKENS<\/span><\/td>\n<td><span style=\"font-weight: 400\">MODIFY_AUDIO_SETTINGS<\/span><\/td>\n<td><span style=\"font-weight: 400\">MODIFY_PHONE_STATE<\/span><\/td>\n<td><span style=\"font-weight: 400\">NFC<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">SEND_SMS<\/span><\/td>\n<td><span style=\"font-weight: 400\">PROCESS_OUTGOING_CALLS<\/span><\/td>\n<td><span style=\"font-weight: 400\">SET_ALARM<\/span><\/td>\n<td><span style=\"font-weight: 400\">SET_ALWAYS_FINISH<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">READ_CALENDAR<\/span><\/td>\n<td><span style=\"font-weight: 400\">KILL_BACKGROUND_PROCESSES<\/span><\/td>\n<td><span style=\"font-weight: 400\">SET_WALLPAPER<\/span><\/td>\n<td><span style=\"font-weight: 400\">VIBRATE<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">WAKE_LOCK<\/span><\/td>\n<td><span style=\"font-weight: 400\">WRITE_APN_SETTINGS<\/span><\/td>\n<td><span style=\"font-weight: 400\">WRITE_CALENDAR<\/span><\/td>\n<td><span style=\"font-weight: 400\">WARITE_SETTINGS<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Summary<\/h2>\n<p>In this article, we read and understood the manifest file in Android. Also, we saw why we need it for our project. Then, we went through its elements and attributes and how it is defined in the Android manifest.xml file. After that, we went through the permissions in the Android manifest file. We then saw a few permissions that are set to True by default and some that are set to False by default.<\/p>\n<p><strong>If you liked the article, do share your review on <a href=\"https:\/\/g.page\/DataFlair\/review?kd\">Google.<\/a><\/strong><span hidden class=\"__iawmlf-post-loop-links\" data-iawmlf-links=\"[{&quot;id&quot;:1144,&quot;href&quot;:&quot;https:\\\/\\\/g.page\\\/DataFlair\\\/review?kd&quot;,&quot;archived_href&quot;:&quot;&quot;,&quot;redirect_href&quot;:&quot;https:\\\/\\\/g.page\\\/DataFlair\\\/review\\\/?kd&quot;,&quot;checks&quot;:[],&quot;broken&quot;:false,&quot;last_checked&quot;:null,&quot;process&quot;:&quot;done&quot;}]\"><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we\u2019ll understand the Android Manifest file. As we know that every android project that we make, need to have an Android Manifest file within. This file is present in the root&#46;&#46;&#46;<\/p>\n","protected":false},"author":10,"featured_media":77740,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[18722],"tags":[22249,22250,22251,22252],"class_list":["post-77738","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-android","tag-android-manifest","tag-android-manifest-file","tag-android-manifest-permission","tag-androidmanifest-xml"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Android Manifest File - androidmanifest xml - DataFlair<\/title>\n<meta name=\"description\" content=\"Android Manifest File - What is manifest file in Android, android manifest.xml file structure, its Element Tags, Application Property Elements &amp; permissions\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/android-manifest-file\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Android Manifest File - androidmanifest xml - DataFlair\" \/>\n<meta property=\"og:description\" content=\"Android Manifest File - What is manifest file in Android, android manifest.xml file structure, its Element Tags, Application Property Elements &amp; permissions\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/android-manifest-file\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-03T04:30:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-25T08:26:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"802\" \/>\n\t<meta property=\"og:image:height\" content=\"420\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Android Manifest File - androidmanifest xml - DataFlair","description":"Android Manifest File - What is manifest file in Android, android manifest.xml file structure, its Element Tags, Application Property Elements & permissions","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:\/\/data-flair.training\/blogs\/android-manifest-file\/","og_locale":"en_US","og_type":"article","og_title":"Android Manifest File - androidmanifest xml - DataFlair","og_description":"Android Manifest File - What is manifest file in Android, android manifest.xml file structure, its Element Tags, Application Property Elements & permissions","og_url":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2020-05-03T04:30:54+00:00","article_modified_time":"2021-08-25T08:26:24+00:00","og_image":[{"width":802,"height":420,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest.jpg","type":"image\/jpeg"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/a90b082e16aa38d207212d22b0581f33"},"headline":"Android Manifest File &#8211; androidmanifest xml","datePublished":"2020-05-03T04:30:54+00:00","dateModified":"2021-08-25T08:26:24+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/"},"wordCount":946,"commentCount":0,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest.jpg","keywords":["android manifest","android manifest file","android manifest permission","androidmanifest xml"],"articleSection":["Android Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/android-manifest-file\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/","url":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/","name":"Android Manifest File - androidmanifest xml - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest.jpg","datePublished":"2020-05-03T04:30:54+00:00","dateModified":"2021-08-25T08:26:24+00:00","description":"Android Manifest File - What is manifest file in Android, android manifest.xml file structure, its Element Tags, Application Property Elements & permissions","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/android-manifest-file\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest.jpg","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2020\/05\/Android-Manifest.jpg","width":802,"height":420,"caption":"Android Manifest File"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/android-manifest-file\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"Android Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/android\/"},{"@type":"ListItem","position":3,"name":"Android Manifest File &#8211; androidmanifest xml"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/a90b082e16aa38d207212d22b0581f33","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/dd6de0d647a0185cd6faf264e4ba860b0d85d08d7070766f9cd41bea5bb0b227?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/dd6de0d647a0185cd6faf264e4ba860b0d85d08d7070766f9cd41bea5bb0b227?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/dd6de0d647a0185cd6faf264e4ba860b0d85d08d7070766f9cd41bea5bb0b227?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"The DataFlair Team is passionate about delivering top-notch tutorials and resources on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. With expertise in the tech industry, we simplify complex topics to help learners excel. Stay updated with our latest insights.","url":"https:\/\/data-flair.training\/blogs\/author\/dfadteam1\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/77738","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=77738"}],"version-history":[{"count":2,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/77738\/revisions"}],"predecessor-version":[{"id":77741,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/77738\/revisions\/77741"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/77740"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=77738"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=77738"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=77738"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}