We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
6.15.1
ios
await appsFlyer.logEvent( "af_purchase", // AppsFlyer predefined event name for purchases { af_revenue: amount, // Revenue amount af_currency: currency, // Currency code (e.g., USD) }, (result) => { console.log("Revenue event logged successfully:", result); }, (error) => { logger.logError("Error logging revenue event:", error); } );
I expect revenue to be logged for android and ios. It works for android but not for ios.
No revenue gets logged
I have only one record logged for ios, probably when I was testing in app events via revenue cat sandbox
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Report
Plugin Version
6.15.1
On what Platform are you having the issue?
ios
What did you do?
await appsFlyer.logEvent(
"af_purchase", // AppsFlyer predefined event name for purchases
{
af_revenue: amount, // Revenue amount
af_currency: currency, // Currency code (e.g., USD)
},
(result) => {
console.log("Revenue event logged successfully:", result);
},
(error) => {
logger.logError("Error logging revenue event:", error);
}
);
What did you expect to happen?
I expect revenue to be logged for android and ios. It works for android but not for ios.
What happened instead?
No revenue gets logged
Please provide any other relevant information.
I have only one record logged for ios, probably when I was testing in app events via revenue cat sandbox
The text was updated successfully, but these errors were encountered: