One of our apps has been removed from Google Play because it allegedly violates the “Families ad format requirements”. Our app does not display 3rd party ads, it only offers a screen where users can view other apps of ours. Each of these apps offer a preview trailer video which we’ve implemented using media.playVideo.
In the rejection message it says: “Your app contains an ad creative that covers the majority of the screen without providing a clear way of dismissing the ad.”
The problem is that media.playVideo by default does not display a close button, and as far as I know there are no parameters we can tweak.
This is what we use:
media.playVideo( <URL>, media.RemoteSource, true )
Apparently the last parameter is used to show/hide the playback controls such as start, stop, seek etc. but it doesn’t affect the close button status.
Is there a way to show the close button using media.playVideo?