- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG]: when video ad is being played the require data is not being populated from native side the object coming blank #4405
Comments
Thank you for your issue report. Please note that the following information is missing or incomplete:
Please update your issue with this information to help us address it more effectively.
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.
|
I don't really understand:
In term of performance, I don't think a good thing to add the url in all events ... |
This issue is stale because it has been open for 30 days with no activity. If there won't be any activity in the next 14 days, this issue will be closed automatically. |
This issue was closed because it has been inactive for 14 days since being marked as stale. |
@freeboub I do not want url in every event i want url once to load for learn more i am handling my own button in app but what happens is i am not able to get that advertise visit url that is shown in IMA player when ads plays help me to get it also I face issue that once ads been played after that the duration timer which shows position of playing video is keep rolling and increasing even after duration has been finished. |
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: