如何解决 android 应用程序中的 http 和站点行为:导航错误?
How to resolved http and Site Behavior: Navigation error in android app?
最近我将 android 9 更新为 android 10,但不幸的是,该应用程序有时会崩溃并出现此错误。
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)
android {
useLibrary 'org.apache.http.legacy'
...}
而且 AdMob 也因为 Site Behavior: Navigation
违规拒绝了我的应用程序,即使我检查了所有链接是否正常工作,所以如何解决这个问题。谢谢
我的三个朋友按照这些步骤解决了错误。
只是请求 google 有时这是一个错误 google 修复了这个
没有更改应用程序的问题。
如果第 1 步未修复,则可能需要从 MainActivity 中删除广告,尤其是插页式广告。
并检查应用程序是否取消链接远程资源。
我有同样的问题。我的横幅广告覆盖或重叠了应用程序的内容。修复横幅广告后再次发布我的应用程序并解决问题。因此,在我看来,请检查您的横幅广告,并检查任何指向另一个应用程序或网页的直接 link。
最近我将 android 9 更新为 android 10,但不幸的是,该应用程序有时会崩溃并出现此错误。
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)
android {
useLibrary 'org.apache.http.legacy'
...}
而且 AdMob 也因为 Site Behavior: Navigation
违规拒绝了我的应用程序,即使我检查了所有链接是否正常工作,所以如何解决这个问题。谢谢
我的三个朋友按照这些步骤解决了错误。
只是请求 google 有时这是一个错误 google 修复了这个 没有更改应用程序的问题。
如果第 1 步未修复,则可能需要从 MainActivity 中删除广告,尤其是插页式广告。
并检查应用程序是否取消链接远程资源。
我有同样的问题。我的横幅广告覆盖或重叠了应用程序的内容。修复横幅广告后再次发布我的应用程序并解决问题。因此,在我看来,请检查您的横幅广告,并检查任何指向另一个应用程序或网页的直接 link。