一个应用如何在显示 YouTube 视频的同时仍然符合 Google 的应用指南?
How can an app show YouTube videos and still meet Google's app guidelines?
在我的 Android 应用程序(未打开 YouTube 应用程序)中显示网站的 YouTube 视频的方法是什么?请注意,我在其他应用程序中看到过它。
我在我的 android 应用程序中使用我网站的 webView(您可以在其中播放 YouTube 视频,它对移动设备有响应)。我的 Android 应用中没有任何广告(我的网站中也没有)。当我尝试上传我的应用程序时,我收到一条消息(见下文)告诉我应该确保不显示或下载 YouTube 视频,但我已经看到其他 Android 应用程序(如 "ELLE"应用程序),您可以显示来自 Android 应用程序的 YouTube 视频。
这是我收到的:
I reviewed your application and had to reject it because it violates
our device and network abuse policy and section 4.4 of the Developer
Distribution Agreement. If you submitted an update, the previous
version of your app is still live on Google Play.
Here’s how you can submit your app for another review:
- Modify your app to make sure it doesn’t access or use a service or API in a manner that violates its terms of service; for example, by
enabling background play of YouTube videos.
- Read through the Device and Network Abuse policy for more details and examples.
- Make sure your app is compliant with all other policies listed in the Developer Program Policies. Remember that additional enforcement
could occur if there are further policy issues with your apps.
有人能帮帮我吗?
如果视频存在于设备上或在默认浏览器中打开,您可以触发 intent 以在 YouTube 应用中打开该视频。现在,如果您的网站上存在 youtube link,您如何在应用程序中获取事件 - 这可以通过使用 javascript - http://tutorials.jenkov.com/android/android-web-apps-using-android-webview.html
来完成
在我的 Android 应用程序(未打开 YouTube 应用程序)中显示网站的 YouTube 视频的方法是什么?请注意,我在其他应用程序中看到过它。
我在我的 android 应用程序中使用我网站的 webView(您可以在其中播放 YouTube 视频,它对移动设备有响应)。我的 Android 应用中没有任何广告(我的网站中也没有)。当我尝试上传我的应用程序时,我收到一条消息(见下文)告诉我应该确保不显示或下载 YouTube 视频,但我已经看到其他 Android 应用程序(如 "ELLE"应用程序),您可以显示来自 Android 应用程序的 YouTube 视频。
这是我收到的:
I reviewed your application and had to reject it because it violates our device and network abuse policy and section 4.4 of the Developer Distribution Agreement. If you submitted an update, the previous version of your app is still live on Google Play.
Here’s how you can submit your app for another review:
- Modify your app to make sure it doesn’t access or use a service or API in a manner that violates its terms of service; for example, by enabling background play of YouTube videos.
- Read through the Device and Network Abuse policy for more details and examples.
- Make sure your app is compliant with all other policies listed in the Developer Program Policies. Remember that additional enforcement could occur if there are further policy issues with your apps.
有人能帮帮我吗?
如果视频存在于设备上或在默认浏览器中打开,您可以触发 intent 以在 YouTube 应用中打开该视频。现在,如果您的网站上存在 youtube link,您如何在应用程序中获取事件 - 这可以通过使用 javascript - http://tutorials.jenkov.com/android/android-web-apps-using-android-webview.html
来完成