违反设备和网络滥用政策 [英] Violating the Device and Network Abuse policy

查看:854
本文介绍了违反设备和网络滥用政策的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的一个Android应用正在使用YouTube API下载视频.由于以下问题,该产品已从Play商店中删除.

One of my android apps is using YouTube API to download videos. And this has been removed from play store due to below issue.

该应用违反了设备和网络滥用政策,因此已从Google Play中删除.在将您的应用提交其他审核之前,请仔细阅读该政策并修改您的应用,以确保该应用不会下载,获利或访问违反YouTube服务条款的YouTube视频."

"This app has been removed from Google Play for violating the Device and Network Abuse policy. Before submitting your app for another review, read through the policy and modify your app to make sure it doesn't download, monetize, or access YouTube videos in a way that violates the YouTube Terms of Service."

我已经仔细阅读了政策,但无法理解上述错误.有人可以指导我到底是什么问题吗?

I've gone through the policies but I could not understand the above error. Can someone guide me what could be the exact issue?

而且,此错误可能会导致我的Play商店帐户终止出现任何问题吗?

And, this error may cause any issues to my play store account termination?

推荐答案

我的应用程序遇到了同样的问题.我在正在播放Youtube视频的网络视图中显示横幅广告.根据Google Play计划政策,我们不允许在访问Youtube视频的屏幕上显示横幅广告.

I had the same issue for my app. I was displaying Banner Ads in the webview where Youtube video is being played. According to Google Play program policy, we are not allowed to show Banner ads in screen where we are accessing Youtube videos.

所以

  1. 如果您的应用在youtube视频屏幕上展示广告,请尝试删除横幅广告

  1. Try to remove banner ads if your app is showing ads in youtube video screen

请确保您在应用程序处于后台时暂停视频.这可能是因为您可能忘记了在应用程序处于后台运行时暂停视频.使用以下代码:-

Make sure that you are to pause Video when your app is in background .This might be you probably forgot to pause the video when your app is in background. Use following code :-

@Override

@Override

public void onPause(){
  super.onPause();
  mWebView.onPause();
}

  • 要添加到清单文件中的重要内容:

  • the important thing to add in manifest file:

    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    

  • 如果仍然遇到相同的问题,请尝试所有这些操作.您可以通过回覆收到拒绝邮件的同一封电子邮件与Google联系,询问拒绝该邮件的详细原因和具体原因应用".

  • After trying all this if you are still having the same issue.You can contact Google by reply back to the same email from which you got this rejection email "Asking about the elaborated and specific reason for the rejection of the app".

    希望这会有所帮助!

    这篇关于违反设备和网络滥用政策的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

  • 查看全文
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆