首页 > 解决方案 > 关于 WebView 和 Admob 的 Google Play 商店政策

问题描述

在我的应用程序中,我正在显示网站列表,单击每个项目时,我将在我的应用程序(详细信息页面)中显示特定网站。我想知道在详细信息页面中显示横幅广告 (AdMob) 是否有任何问题,例如侵犯知识产权...等

简而言之,我想避免我的 Google Play 商店帐户拒绝应用程序

附加我的详细信息页面的 XML。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">


    <ProgressBar
        android:id="@+id/progressBar"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="3dp"
        android:layout_alignParentTop="true"
        android:layout_centerVertical="true"
        android:indeterminate="true"
        android:indeterminateTint="@color/tab_checked"
        android:max="100"
        android:progress="50"
        android:visibility="visible" />

    <WebView
        android:id="@+id/webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/cv_main"
        android:layout_below="@+id/progressBar"
        android:layout_weight="1">

    </WebView>

    <com.google.android.gms.ads.AdView
        android:id="@+id/adView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_gravity="center"
        android:orientation="vertical"
        android:visibility="visible">


    </com.google.android.gms.ads.AdView>
</RelativeLayout>

标签: google-playadmobandroid-webviewgoogle-play-console

解决方案


确保横幅不会出现在内容上,而是出现在单独的位置,广告与应用内容重叠(违反政策)

您应该以非常清晰的方式显示您在此区域(详细信息页面)显示您不拥有的网站,以避免冒充(除非您拥有这些网站)

还要考虑到这些网站的所有者可能会向 Google 举报您并要求删除您的应用。正如这里提到的

未经网站所有者或管理员许可,我们不允许应用的主要目的是为网站增加联属网络流量或提供网站的网络视图。

确保您的应用程序除了打开网页之外还有其他功能。

主要目的是在未经许可的情况下提供网站的 web 视图的应用程序:

此外,如果您的应用程序是为家庭设计的,即使您拥有该应用程序,您也无法做到这一点

应用程序功能:您的应用程序不得仅提供网站的 web 视图或主要目的是为网站带来会员流量,无论该网站的所有权如何。

我的建议:在这种情况下不要使用横幅,即使您可以以不违反任何准则的方式这样做,您的应用也可能会被多次拒绝并收到违规警告。


推荐阅读