You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When my player is running the ad from remote url which is VAST
i am not getting ad url when i click on ad as follow log i seen
{"data":{},"event":"CLICKED"}
also check this log below
{"data":{},"event":"AD_PROGRESS"}
here is below one where i am getting ad events.
onReceiveAdEvent={(ads) => {
console.log("object of Ads" + JSON.stringify(ads));
if (ads.event == "CONTENT_PAUSE_REQUESTED") {
this.setState({
isPlayingAd: true,
});
} else if (ads.event == "CONTENT_RESUME_REQUESTED") {
this.setState({
isPlayingAd: false,
});
}
}}
Reproduction Link
repository link
Reproduction
Step to reproduce this bug are: just us this video ad url and run this onReceiveAdEvent to check what events are coming and is it coming with populated data as mentioned in documentation
The text was updated successfully, but these errors were encountered:
Thank you for your issue report. Please note that the following information is missing or incomplete:
reproduction link
Please update your issue with this information to help us address it more effectively.
Note: issues without complete information have a lower priority
There is a newer version of the library available. You are using version "react, while the latest stable version is native. Please update to the latest version and check if the issue still exists.
Note: If the issue still exists, please update the issue report with the latest information.
Version
"react-native-video": "^6.8.2"
What platforms are you having the problem on?
Android
System Version
Android 14
On what device are you experiencing the issue?
Real device
Architecture
New architecture with interop layer
What happened?
A bug happened!
My ad url is
https://nightlife.net/viddles/androidvnode.xml?sz=640x480&iu=/124319096/external/single_ad_samples&ciu_szs=300x250&impl=s&gdfp_req=1&env=vp&output=vast&unviewed_position_start=1&cust_params=deployment%3Ddevsite%26sample_ct%3Dskippablelinear&correlator=
When my player is running the ad from remote url which is VAST
i am not getting ad url when i click on ad as follow log i seen
{"data":{},"event":"CLICKED"}
also check this log below
{"data":{},"event":"AD_PROGRESS"}
here is below one where i am getting ad events.
onReceiveAdEvent={(ads) => {
console.log("object of Ads" + JSON.stringify(ads));
if (ads.event == "CONTENT_PAUSE_REQUESTED") {
this.setState({
isPlayingAd: true,
});
} else if (ads.event == "CONTENT_RESUME_REQUESTED") {
this.setState({
isPlayingAd: false,
});
}
}}
Reproduction Link
repository link
Reproduction
Step to reproduce this bug are: just us this video ad url and run this onReceiveAdEvent to check what events are coming and is it coming with populated data as mentioned in documentation
The text was updated successfully, but these errors were encountered: