【问题标题】:Android app rejection: Your app doesn't comply with the Device and Network Abuse policyAndroid 应用被拒绝:您的应用不符合设备和网络滥用政策
【发布时间】:2020-11-22 19:44:22
【问题描述】:

我收到了来自 Google Play 的应用拒绝通知。原因是 您的应用存在问题 您的应用不符合设备和网络滥用政策。 问题详细信息。我们在以下区域发现了一个问题: 应用内体验:请看附件截图 我正在使用 Youtube 播放器。但我不明白出了什么问题。我的播放器xml如下

``

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.pierfrancescosoffritti.androidyoutubeplayer.core.player.views.YouTubePlayerView
        android:id="@+id/yt_player"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:useWebUi="true"
        app:showFullScreenButton="true">

    </com.pierfrancescosoffritti.androidyoutubeplayer.core.player.views.YouTubePlayerView>

    <ScrollView
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintTop_toBottomOf="@+id/yt_player"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintBottom_toBottomOf="parent">

        <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <TextView
                android:id="@+id/video_title"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginStart="16dp"
                android:layout_marginTop="16dp"
                android:layout_marginEnd="16dp"
                android:textAppearance="@style/TextAppearance.MaterialComponents.Headline6"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />
        </androidx.constraintlayout.widget.ConstraintLayout>
    </ScrollView>

</androidx.constraintlayout.widget.ConstraintLayout>

``

【问题讨论】:

    标签: android-studio google-play android-youtube-api


    【解决方案1】:

    也许是您的自定义标题和 youtube 标题 masup。删除您的自定义标题,然后重试。

    【讨论】:

    • 是的,在 xml 中更改 webUI true 后,我的应用程序接受了
    【解决方案2】:

    这是与您的问题相关的政策:https://support.google.com/googleplay/android-developer/answer/9888379

    我怀疑您的应用可能违反了 YouTube 服务条款,因为其他人在这里遇到了这个问题:Violating the Device and Network Abuse policy

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-08-31
      • 1970-01-01
      • 2020-02-12
      • 1970-01-01
      • 1970-01-01
      • 2022-12-01
      相关资源
      最近更新 更多