Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android youtube player app, google play rejected for background playing

I have been working on android youtube player app like Viral Popup. And published successfully to Google Play. But after few days it rejected with :

"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;"

statements.

And I changed my app logic. For now it stops video playing after screen lock. (I think it is what Google want from me. Background playing related thing..) And uploaded again. But nothing changed with google reject. Still same "... we have determined that your app enables background playing..."

So guys if you have same issue, how do you solve this? What would I do now? How to NOT violate YouTube API TOS[8]?

like image 759
Pico Alto Avatar asked Aug 19 '15 09:08

Pico Alto


People also ask

Why can't YouTube play in the background Android?

If you've blocked notifications, the YouTube app might not be able to run smoothly and/or access the internet in the background. If this happens, you'll need to re-enable YouTube notifications at the OS level and, if you still don't want to receive notifications, you can disable them from the YouTube app settings.

What happened to YouTube background play?

If the YouTube background play feature is not enabled on your YouTube app, YouTube background playback not working will happen inevitably. You can tap your profile picture, go to Settings > Background & Downloads > Background Play to check whether the feature is enabled. If it is off, you need to turn it on.


1 Answers

For now it stops video playing after screen lock.

I don't think that this is enough.

The terms of service require that you do not separate, isolate, or modify the audio or video components.

I interpret this to mean that you must not play Youtube audio without the video being visible, and not play video without the audio being audible.

This means that you may not continue playback if your app goes into the background, even if the screen is on. Please check to make sure that this does not happen, even by accident (for example, another app launches on top of your app).

like image 199
savanto Avatar answered Oct 14 '22 04:10

savanto