Android 来自 Google Play 的应用拒绝

Android App rejection from Google Play

我最近向 Google Play 商店提交了一个 Android 应用程序,但收到一条消息说我的应用程序已被拒绝。 我不确定问题出在哪里,也找不到确切的解决方案。

REASON FOR REJECTION:Violation of the Prohibited Actions provision of the Content Policy.

After a regular review, we have determined that your app enables background playing of YouTube videos, which is a violation of the YouTube API Terms of Service:

"Your API Client will not, and You will not encourage or create functionality for Your users or other third parties to: (8) separate, isolate, or modify the audio or video components of any YouTube audiovisual content made available through the YouTube API;"

All submission rejections are tracked. Repeated rejections due to policy violations will result in app suspension, at which point this app will count as a strike against the good standing of your developer account and no longer be available on Google Play.

其实app的逻辑很简单。 该应用程序只有一个 WebView,它只加载一个 url 嵌入的 youtube 视频。

这是网络视图显示的 link。 http://www.x17online.com/2015/08/benji_madden_cameron_diaz_are_at_lax_photos_083115#kWESwFbZwGicf9PV.99

所以我猜是播放这个youtube视频的时候出了问题,所以尝试了几种方法都没有解决。

请帮帮我!!! 谢谢

我在我的应用程序中遇到了同样的问题 once.It 由于违反 YouTube 政策而被拒绝 issue.In 我的应用程序,我有一个播放嵌入式 YouTube 的 HTML 页面 videos.Finally 我发现视频在后台播放,即使屏幕 locked.I 错过了 onPause() 方法来处理 it.That 是我的应用程序得到 rejected.So 来解决这个问题的原因,

  1. 检查视频是否在后台播放,即使屏幕是 locked.If 所以尝试添加 onPause() 方法来停止视频播放。
  2. 如果以上部分没问题,请检查您是否使用 YouTube API 来集成它。

这两个应该work.All最好。

您的 WebView 实现似乎使视频在应用关闭时继续播放,这就是后台播放的意思。

尝试使用 videoview 而不是在 webview 中播放视频。