How to resolved http and Site Behavior: Navigation error in android app?(如何解决 http 和站点行为:android 应用程序中的导航错误?)
问题描述
最近我将 android 9 更新为 android 10,但不幸的是,该应用程序有时会崩溃并出现此错误.
Recently I updated android 9 to android 10 but unfortunately, the app sometimes crashes and gives this error.
com.fgapps.maker E/chromium: [ERROR:cookie_manager.cc(137)] Strict Secure Cookie policy does not
allow setting a secure cookie for http://googleads.g.doubleclick.net/ for apps targeting >= R.
Please either use the 'https:' scheme for this URL or omit the 'Secure' directive in the cookie value.
我尝试在清单中使用它
<application
android:hardwareAccelerated="false"
android:networkSecurityConfig="@xml/network_security_config"
android:usesCleartextTraffic="true"
....>
<uses-library
android:name="org.apache.http.legacy"
android:required="false" />
我还添加了 build-gradle (app)
I also added build-gradle (app)
android {
useLibrary 'org.apache.http.legacy'
...}
而且 AdMob 由于 Site Behavior: Navigation
违规而拒绝了我的应用程序,即使我检查了所有链接都正常工作,所以如何解决这个问题.谢谢
and also AdMob rejects my app due to Site Behavior: Navigation
violation even I checked all links working properly, so How to resolve this issue. thanks
推荐答案
我的三个朋友按照这些步骤解决了错误.
Three of my friends resolved errors by following these steps.
只是请求谷歌这是一个错误,有时谷歌会修复这个无需更改应用即可发出问题.
Just request to google this is an error sometimes google fixes this issue without changes in the app.
如果第 1 步未修复,则可能需要从 MainActivity 中删除广告,尤其是插页式广告.
If not fix from step-1 then it maybe needs to remove ads from MainActivity, especially Interstitial ad.
并检查应用程序是否取消链接远程资源.
and also check the app for unlink remote resources.
这篇关于如何解决 http 和站点行为:android 应用程序中的导航错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何解决 http 和站点行为:android 应用程序中的导航错误?
基础教程推荐
- Android:对话框关闭而不调用关闭 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01