我最近向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,它只是加载了一个嵌入了youtube视频的网址.
这是webview显示的链接.
http://www.x17online.com/2015/08/benji_madden_cameron_diaz_are_at_lax_photos_083115#kWESwFbZwGicf9PV.99
所以我想在播放这个YouTube视频时出现了问题,所以我尝试使用几种方法来解决它,但它没有修复.
请帮帮我!!!
谢谢
解决方法:
我在我的应用中遇到了同样的问题.由于YouTube政策违规问题我被拒绝了.在我的应用中,我有一个播放嵌入式YouTube视频的HTML页面.最后我发现即使屏幕被锁定,视频也会在后台播放我错过了onPause()方法来处理它.这就是为什么我的应用程序被拒绝的原因.所以为了解决这个问题,
>即使屏幕被锁定,也要检查视频是否在后台播放.如果尝试添加onPause()方法以停止播放视频.
>如果上述部分没问题,请检查您是否使用YouTube API进行集成.
这两个中的任何一个都应该工作.一切都是最好的.