{"id":23922,"date":"2023-11-14T11:15:39","date_gmt":"2023-11-14T05:45:39","guid":{"rendered":"https:\/\/www.wpoven.com\/blog\/?p=23922"},"modified":"2023-11-15T14:09:35","modified_gmt":"2023-11-15T08:39:35","slug":"net-err_cleartext_not_permitted","status":"publish","type":"post","link":"https:\/\/www.wpoven.com\/blog\/net-err_cleartext_not_permitted\/","title":{"rendered":"How to fix NET::ERR_CLEARTEXT_NOT_PERMITTED Error? (5 methods)"},"content":{"rendered":"\n<p>Are you looking to fix the NET::ERR_CLEARTEXT_NOT_PERMITTED error? Then you have landed on the right post.<\/p>\n\n\n\n<p>This NET::ERR_CLEARTEXT_NOT_PERMITTED error is specific to Android users and we know Android has a huge market share compared to other mobile OS.<\/p>\n\n\n\n<p>This means you are not the only one who is a victim of this particular error, but there can be many users like you who have encountered or are vulnerable to this error message at times.<\/p>\n\n\n\n<p>But you do not need to worry. In this post, we will try to clear all your doubts regarding this error and help you understand exactly what went wrong and what you need to do to fix this.<\/p>\n\n\n\n<p>So stay tuned and keep reading this comprehensive post till the end. <\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<div class=\"wp-block-group fre-pros-box is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<h2 class=\"wp-block-heading myh2\">How to fix NET::ERR_CLEARTEXT_NOT_PERMITTED Android error?<\/h2>\n\n\n\n<p>Now in this section, we shall talk about troubleshooting <strong>NET::ERR_CLEARTEXT_NOT_PERMITTED<\/strong> Error. For this, if you are an Android developer you will be required to access your Android App.<\/p>\n\n\n\n<ul>\n<li><a href=\"#Enable-clear-text-traffic-by-modifying-Androidmanifest.xml\" data-type=\"internal\" data-id=\"#Enable-clear-text-traffic-by-modifying-Androidmanifest.xml\">Enable clear text traffic by modifying Androidmanifest.xml<\/a><\/li>\n\n\n\n<li><a href=\"#Whitelisting-particular-website-using-&quot;network_security_config.Xml&quot;\" data-type=\"internal\" data-id=\"#Whitelisting-particular-website-using-&quot;network_security_config.Xml&quot;\">Whitelisting particular website using &#8220;network_security_config.Xml&#8221;<\/a><\/li>\n\n\n\n<li><a href=\"#HTTP-to-HTTPS-Redirection-for-Nginx\" data-type=\"internal\" data-id=\"#HTTP-to-HTTPS-Redirection-for-Nginx\">HTTP to HTTPS Redirection for Nginx<\/a><\/li>\n\n\n\n<li><a href=\"#Force-Your-WordPress-site-to-use-HTTPS\" data-type=\"internal\" data-id=\"#Force-Your-WordPress-site-to-use-HTTPS\">Force Your WordPress site to use HTTPS<\/a><\/li>\n\n\n\n<li><a href=\"#Load-Website-in-Modern-Browsers\" data-type=\"internal\" data-id=\"#Load-Website-in-Modern-Browsers\">Load Website in Modern Browsers<\/a><\/li>\n<\/ul>\n<\/div><\/div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"Enable-clear-text-traffic-by-modifying-Androidmanifest.xml\">1. Enable clear text traffic by modifying Androidmanifest.xml<\/h3>\n\n\n\n<p>The first troubleshooting method you can follow is to enable clear text traffic by modifying the androidmanifest.xml file. Every Android App has this Androidmanifest.xml file that has all the information related to the app that is required by the Android Operating system and other Android platforms.<\/p>\n\n\n\n<p>This particular method bypasses Google&#8217;s strict HTTPS guideline, hence it can be a temporary solution unless the website you are trying to load is moved to encrypted traffic.<\/p>\n\n\n\n<p>To enable or allow Clear traffic, all you need to add the &#8220;android:usescleartexttraffic&#8221; attribute and set its value to &#8220;true&#8221; in the \u201c&lt;application&gt;\u201d tag.<\/p>\n\n\n\n<p>To navigate and edit the Androidmanifest.xml file, follow the simple steps given below:<\/p>\n\n\n\n<p><strong>Step 1: <\/strong>First you need to open your Android project or access the app&#8217;s .apk file. There are various ways you can open and edit your Android project but for your convenience use Android Studio.<\/p>\n\n\n\n<p><strong>Step 2:<\/strong> When you can open your Android Project in Android Studio, Navigate the &#8220;AndroidManifest.xml&#8221; file located in your project&#8217;s directory structure. <\/p>\n\n\n\n<p><strong>Step 3:<\/strong> When you find the  &#8220;AndroidManifest.xml&#8221; file click to open it in a text editor.<\/p>\n\n\n\n<p><strong>Step 4:<\/strong> Now look for the \u201c&lt;application&gt;\u201d tag and add this attribute &#8220;android:usescleartexttraffic&#8221;<\/p>\n\n\n\n<ul>\n<li>Locate the \u201cAndroidManifest.xml\u201d file within your project\u2019s directory structure.<\/li>\n\n\n\n<li>Open the \u201cAndroidManifest.xml\u201d file in a text editor or within the IDE.<\/li>\n\n\n\n<li>Locate and add the following line of code  &#8220;<code>android:usesCleartextTraffic=\u201dtrue<\/code>&#8221; within the application opening and closing tags.<\/li>\n<\/ul>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>&lt;application <br> android:icon=\"@drawable\/ic_launcher\" <br> android:label=\"@string\/app_name\"<br> android:theme=\"@style\/AppTheme\" &gt; <br> android:usesCleartextTraffic=\u201dtrue\u201d <br>&lt;\/application&gt;<\/strong><\/code><\/p>\n\n\n\n<p>In case the attribute is already set to False, make it True.<\/p>\n\n\n\n<p><strong>Step 5:<\/strong> After that save the file and you are done.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<p class=\"round justify has-background\" style=\"background-color:#fff6dd\"><strong>Note:<\/strong> Please keep in mind that, the above method is not highly recommended, it is because you are bypassing the security and allowing unsecured traffic to your Android App&#8217;s web view.  This can expose the user&#8217;s sensitive information to third parties. Therefore, this method is best suitable for testing or development purposes.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"Whitelisting-particular-website-using-&quot;network_security_config.Xml&quot;\">2. Whitelisting particular website using &#8220;network_security_config.Xml&#8221;<\/h3>\n\n\n\n<p>Apart from what you have seen in the previous method. This solution focuses on allowing clear text Traffic to specific domains you trust. <\/p>\n\n\n\n<p>As compared to the previous one, this method is quite safe and it only allows you to link secure webpages to load on your Android App&#8217;s webview.<\/p>\n\n\n\n<p>One thing you should keep in mind is that you can only try one of these two methods, either enable cleartext traffic for all the websites or apps or allow only specific domains or apps.<br>If security is your biggest concern, it would be better for you to follow the method mentioned below:<\/p>\n\n\n\n<p>The first thing you need to do is to create a network_security_config.Xml file. For this, you have to open your Android project in Android Studio and go to the &#8220;res&#8221; directory by following this path app\/src\/main\/res\/xml\/network_security_config.xml.<\/p>\n\n\n\n<p>Now create a new file named &#8220;<strong>network_security_config.xml<\/strong>&#8221; within the res directory and add the following line of codes to it.<\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>&lt;?xml version=\u201d1.0\u2033 encoding=\u201dutf-8\u2033?&gt;<br>&lt;network-security-config&gt;<br>&lt;base-config cleartextTrafficPermitted=\u201dtrue\u201d&gt;<br>&lt;trust-anchors&gt;<br>&lt;certificates src=\u201dsystem\u201d \/&gt; <br>&lt;\/trust-anchors&gt;<br>&lt;\/base-config&gt;<br>&lt;domain-config cleartextTrafficPermitted=\u201dtrue\u201d&gt;<br>&lt;domain&gt;insert_name_of_domain&lt;\/domain&gt;<br>&lt;domain includeSubdomains=\u201dtrue\u201d&gt;insert_sub_domain_including_ip_addresses&lt;\/domain&gt;<br>&lt;\/domain-config&gt;<br>&lt;\/network-security-config&gt;<\/strong><\/code><\/p>\n\n\n\n<p>This will allow only a specific domain to use cleartext. However, you can add multiple domains or URLs using the &#8220;domain include Subdomains\u201d elements. But for security reasons, it would be better to add only those domains or URLs that you trust.<\/p>\n\n\n\n<p>Now, save the &#8220;<strong>network_security_config.xml<\/strong>&#8221; file and update the &#8220;AndroidManifest.xml&#8221; file to make it effective.<\/p>\n\n\n\n<p>To do this, open this &#8220;<strong>AndroidManifest.xml<\/strong>&#8221; file, look for the application sub-element tags, and insert the following line of codes between them.<\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>&lt;?xml version=\u201d1.0\u2033 encoding=\u201dutf-8\u2033?&gt;<br>&lt;manifest \u2026&gt;<br>&lt;uses-permission android:name=\u201dandroid.permission.INTERNET\u201d \/&gt;<br>&lt;application<br>\u2026 <br>android:networkSecurityConfig=\u201d@xml\/network_security_config\u201d \u2026&gt;<br>\u2026<br>&lt;\/application&gt; <br>&lt;\/manifest&gt;<\/strong><\/code><\/p>\n\n\n\n<p>Save and close the &#8220;<strong>AndroidManifest.xml<\/strong>&#8221; file. That&#8217;s it now you are allowed to load an HTTP webpage in Webview.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<p class=\"has-text-align-left round has-background\" style=\"background-color:#daf2ff\"><strong>Read:<\/strong>   \ud83d\udea9  <a href=\"https:\/\/www.wpoven.com\/blog\/net-err_cert_date_invalid\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.wpoven.com\/blog\/net-err_cert_date_invalid\/\" rel=\"noreferrer noopener\">12 Best Methods to Fix NET::ERR_CERT_DATE_INVALID Error<\/a><\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"HTTP-to-HTTPS-Redirection-for-Nginx\">3. HTTP to HTTPS Redirection for Nginx <\/h3>\n\n\n\n<p>If you want Nginx web servers not to display an error message &#8220;<strong>NET::ERR_CLEARTEXT_NOT_PERMITTED<\/strong>&#8221; on WebViw. You can enforce them to use HTTPS and establish a secure connection between the server and the client.<\/p>\n\n\n\n<p>To make this possible, follow the steps given below:<\/p>\n\n\n\n<ul>\n<li>First, you need to open the Nginx config file for your website by following either of these paths,\/etc\/nginx\/conf.d or etc\/nginx\/nginx.conf.<\/li>\n\n\n\n<li>Look out for the server block that shows your website name and insert the following line of codes.<\/li>\n<\/ul>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>&lt;VirtualHost *:80&gt;<br>ServerName your_website.com # Replace with your domain name<br># Redirect HTTP to HTTPS<br>RewriteEngine On<br>RewriteCond %{HTTPS} off<br>RewriteRule ^(.*)$ https:\/\/%{HTTP_HOST}%{REQUEST_URI} [R=301,L]<br>&lt;\/VirtualHost&gt;<\/strong><\/code><\/p>\n\n\n\n<p>This code will enable redirection from HTTP to HTTPS. Save the file to make the changes effective.<\/p>\n\n\n\n<p>Now test if the configuration file is working or not by following this command &#8220;apachectl configtest&#8221;.<\/p>\n\n\n\n<p>If everything turns out to be working, you are required to restart the Apache server by following the below command.<\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong># Ubuntu, Debian<br>sudo service apache2 restart<br># CentOS, Fedora<br>sudo systemctl restart httpd<\/strong><\/code><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"Force-Your-WordPress-site-to-use-HTTPS\">4. Force Your WordPress site to use HTTPS<\/h3>\n\n\n\n<p>One of the most secure and highly recommended methods for the <strong>NET::ERR_CLEARTEXT_NOT_PERMITTED<\/strong> error you can follow is to force or configure the website that uses HTTP instead of HTTPS. Even the Google search engine considers Secure websites as one of the major ranking factors in SERPs. <\/p>\n\n\n\n<p>You can check out our dedicated blogs on this Redirection technique., just follow any of the methods of your choice and eliminate the NET::ERR_CLEARTEXT_NOT_PERMITTED error.<\/p>\n\n\n\n<ul>\n<li><a href=\"https:\/\/www.wpoven.com\/blog\/wordpress-redirect\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.wpoven.com\/blog\/wordpress-redirect\/\" rel=\"noreferrer noopener\">How does WordPress Redirect URL work? 5 Best Methods<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.wpoven.com\/blog\/http-to-https\/\" target=\"_blank\" rel=\"noreferrer noopener\">A Complete Guide on HTTP to HTTPS Migration in WordPress<\/a><\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"Load-Website-in-Modern-Browsers\">5. Load Website in Modern Browsers<\/h3>\n\n\n\n<p>If none of the above methods work for you, or you are feeling lazy enough to follow the above methods. Just access the website or domain in any modern browser you have, i.e. Chrome or Firefox.<\/p>\n\n\n\n<p>However, nowadays if you try to load an HTTP website on these browsers you might encounter a &#8220;connection, not private&#8221; error message or &#8220;Connection not secure sign&#8221; at the address bar.<\/p>\n\n\n\n<p>But it doesn&#8217;t mean that you are free from <strong>NET::ERR_CLEARTEXT_NOT_PERMITTED Samsung error<\/strong>,  but still, you are exposed to security risk and whatever data you share on the website is still in cleartext.<\/p>\n\n\n\n<p>Therefore you should avoid sharing or providing any sensitive information to personal details to websites that use HTTP. This is the main reason why Google has disabled it by default.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<p class=\"has-text-align-left round has-background\" style=\"background-color:#daf2ff\"><strong>Read:<\/strong>   \ud83d\udea9  <a href=\"https:\/\/www.wpoven.com\/blog\/neterr_cert_authority_invalid\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.wpoven.com\/blog\/neterr_cert_authority_invalid\/\" rel=\"noreferrer noopener\">How to Fix NET::ERR_CERT_AUTHORITY_INVALID Error? (10 Solutions)<\/a><\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h2 class=\"wp-block-heading\">What is NET::ERR_CLEARTEXT_NOT_PERMITTED Error?<\/h2>\n\n\n\n<p>The NET::ERR_CLEARTEXT_NOT_PERMITTED is an error message displayed in the Android System Webview when an Android app is trying to load unencrypted or HTTP information.<\/p>\n\n\n\n<p>You should not misunderstand this error with any technical glitches or issues. Surprizingly when you try to load the same URL or load the same information on any web browser. You might not encounter any errors.<\/p>\n\n\n\n<p>Since the NET::ERR_CLEARTEXT_NOT_PERMITTED is displayed inside the Android apps, you might also misunderstand that there is something wrong with the Android app itself. However, you can easily bypass or fix this error. <\/p>\n\n\n\n<p>The majority of the solutions available are meant for Android developers and web admins. But if you are an end user, you can follow only a handful of troubleshooting methods besides loading the URL on Web browsers. <\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h2 class=\"wp-block-heading\">What is Android Web view?<\/h2>\n\n\n\n<p>If you are an end-user, you might have no idea about Android Web view. Let us help you to make it easy to understand. <\/p>\n\n\n\n<p>It is a special feature of Android OS that helps you load webpages within the Android apps without using external browsers. Also allows developers to create hybrid applications that are a combination of both native as well as web-based features.<\/p>\n\n\n\n<p>Apart from all these features, the only demerit of Web view you will find is you will not get the amount of features you get in the browser.<\/p>\n\n\n\n<p>The NET::ERR_CLEARTEXT_NOT_PERMITTED Error is specific to Android Apps that use Web View. You won&#8217;t get such an error while browsing the website via Browser i.e. Chrome or Firefox. <\/p>\n\n\n\n<p>However, if you visit an unsecured website or PHP-built website, you might encounter a different type of error &#8221; <a href=\"https:\/\/www.wpoven.com\/blog\/fix-your-connection-is-not-private-error-in-chrome\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.wpoven.com\/blog\/fix-your-connection-is-not-private-error-in-chrome\/\" rel=\"noreferrer noopener\">Your Connection is not Private error&#8221;<\/a>.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h2 class=\"wp-block-heading\">What causes the NET::ERR_CLEARTEXT_NOT_PERMITTED error?<\/h2>\n\n\n\n<p>The <strong>NET::ERR_CLEARTEXT_NOT_PERMITTED<\/strong> error showed up because your Android app was trying to load unencrypted web content via cleartext. But from starting Android version 9 (Pie), google has disabled this transmission of unencrypted data or loading of HTTP webpages in their default configuration.<\/p>\n\n\n\n<p>Now, this configuration is only applicable to Applications that use Android View. This is the main reason why you will not encounter this error on browsers even in Android OS but within Android apps.<\/p>\n\n\n\n<p>The whole purpose of Google to enforce this is to make a safe environment for users to protect their sensitive information from third parties. Google, encourages Android developers to provide only HTTPS-compatible websites in their Web View rather than insecure HTTP connections. Because HTTPS has various benefits such as,<\/p>\n\n\n\n<ul>\n<li>Enhanced Security for Android Apps<\/li>\n\n\n\n<li>Trust and User Confidence<\/li>\n\n\n\n<li>Data Integrity<\/li>\n\n\n\n<li>Authentication<\/li>\n\n\n\n<li>SEO benefits<\/li>\n\n\n\n<li>Confidentiality for Users and many more.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h2 class=\"wp-block-heading\">Summary<\/h2>\n\n\n\n<p>If you encounter a NET::ERR_CLEARTEXT_NOT_PERMITTED error in Android&#8217;s App Webview, it simply means that the app is trying to load an unsecured HTTP website. For security reasons, Google has enabled blocking such unsecured websites that potentially compromise the user&#8217;s sensitive information.<\/p>\n\n\n\n<p>If you are an Android developer or Website Admin, Follow the methods given below:<\/p>\n\n\n\n<ul>\n<li>&nbsp;Enable clear text traffic by modifying Androidmanifest.xml<\/li>\n\n\n\n<li>Whitelisting particular website using \u201cnetwork_security_config.Xml\u201d<\/li>\n\n\n\n<li>HTTP to HTTPS Redirection for Nginx<\/li>\n\n\n\n<li>Force Your WordPress site to use HTTPS<\/li>\n\n\n\n<li>Load Website in Modern Browsers<\/li>\n<\/ul>\n\n\n\n<p>If you have any queries or suggestions regarding this post, please do let us know in the comment section below.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1699528499674\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">What does Err_cleartext_not_permitted mean?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>The NET::ERR_CLEARTEXT_NOT_PERMITTED is an error message displayed in the Android System Webview when an Android app is trying to load unencrypted or HTTP information.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1699528723741\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">What is error Cleartext not permitted on Android?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>The &#8220;Cleartext not permitted&#8221; error on Android typically occurs when your app attempts to make a network request over an insecure HTTP connection (cleartext) rather than a secure HTTPS connection. This error is a security feature introduced in Android to encourage developers to use secure connections for transmitting data over the network.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1699528774741\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">How to fix err_cleartext_not_permitted Android<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>If you are an Android developer or Website Admin, Follow the methods given below:<br \/>1. Enable clear text traffic by modifying Androidmanifest.xml<br \/>2. Whitelisting particular website using \u201cnetwork_security_config.Xml\u201d<br \/>3. HTTP to HTTPS Redirection for Nginx<br \/>4. Force Your WordPress site to use HTTPS<br \/>5. Load Website in Modern Browsers<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_11cf482c-732d-4aed-880e-ef2b6c5a413d\"><hr class=\"ub_divider\" ><\/hr><\/div>","protected":false},"excerpt":{"rendered":"<p>Are you looking to fix the NET::ERR_CLEARTEXT_NOT_PERMITTED error? Then you have landed on the right post.<\/p>\n<p>This NET::ERR_CLEARTEXT_NOT_PERMITTED error is specific to Android users and we know Android has a huge market share compared to other mobile OS.<\/p>\n<p>This means you are not the only one who is a victim of this particular error, but there can be many users like you who have encountered or are vulnerable to this error message at times.<\/p>\n<p>But you do not need to worry. &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.wpoven.com\/blog\/net-err_cleartext_not_permitted\/\" class=\"more-link\">Read More <i class=\"fa fa-angle-double-right\" aria-hidden=\"true\"><\/i><span class=\"screen-reader-text\"> &#8220;How to fix NET::ERR_CLEARTEXT_NOT_PERMITTED Error? (5 methods)&#8221;<\/span><\/a><\/p>\n","protected":false},"author":28,"featured_media":23995,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ub_ctt_via":"","footnotes":""},"categories":[6,11],"acf":[],"featured_image_src":"https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2023\/11\/NET_ERR_CLEARTEXT_NOT_PERMITTED.png","author_info":{"display_name":"Rahul","author_link":"https:\/\/www.wpoven.com\/blog\/author\/rahul\/"},"_links":{"self":[{"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/posts\/23922"}],"collection":[{"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/comments?post=23922"}],"version-history":[{"count":2,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/posts\/23922\/revisions"}],"predecessor-version":[{"id":24024,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/posts\/23922\/revisions\/24024"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/media\/23995"}],"wp:attachment":[{"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/media?parent=23922"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/categories?post=23922"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}