Android 应用被拒绝:您的应用不符合设备和网络滥用政策
Android app rejection: Your app doesn't comply with the Device and Network Abuse policy
我收到来自 Google Play 的应用拒绝通知。原因是
你的应用有问题
您的应用不符合设备和网络滥用政策。
问题 details.We 在以下方面发现了问题:
应用内体验:请见附件截图
我正在使用 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>
``
这是与您的问题相关的政策:https://support.google.com/googleplay/android-developer/answer/9888379
我怀疑您的应用可能违反了 YouTube 服务条款,因为其他人在这里遇到了这个问题:Violating the Device and Network Abuse policy
也许是您的自定义标题和 youtube 标题组合。删除您的自定义标题并重试。
我收到来自 Google Play 的应用拒绝通知。原因是
你的应用有问题
您的应用不符合设备和网络滥用政策。
问题 details.We 在以下方面发现了问题:
应用内体验:请见附件截图
``
<?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>
``
这是与您的问题相关的政策:https://support.google.com/googleplay/android-developer/answer/9888379
我怀疑您的应用可能违反了 YouTube 服务条款,因为其他人在这里遇到了这个问题:Violating the Device and Network Abuse policy
也许是您的自定义标题和 youtube 标题组合。删除您的自定义标题并重试。