Track conversions, optimize campaigns, and build custom audiences with Meta Audience Network & Facebook SDK.
Integrate Meta Audience Network and Facebook SDK natively into your mobile app. Nativine bridges native conversion tracking, App Events, and SKAdNetwork 4.0 attribution, enabling precise ad retargeting and ROAS optimization on Facebook and Instagram.
Meta Audience Network allows developers to monetize mobile traffic and measure advertising campaigns. Nativine embeds Meta's native Audience Network & Facebook SDKs into your app binary:
To log conversion events or custom parameters to Meta Ads in JavaScript, call nativine.metaAds.logEvent():
nativine.metaAds.logEvent({
eventName: 'fb_mobile_purchase',
valueToSum: 49.99,
currency: 'USD',
parameters: {
fb_content_type: 'product',
fb_content_id: 'sku_12345'
}
});
| Parameter | Type | Description |
|---|---|---|
eventName | string | Required. Standard Facebook App Event name (e.g. fb_mobile_purchase, fb_mobile_complete_registration). |
valueToSum | number | Optional. Monetary value of the conversion event. |
currency | string | Optional. 3-letter currency code (e.g. USD, EUR). |
Yes. On iOS 14.5+, Nativine triggers the native ATT prompt before initializing Meta tracking to ensure compliance with Apple Store guidelines.
Yes. Call nativine.metaAds.logCustomEvent('custom_event_name', { param: 'val' }) to send custom event payloads to Meta Events Manager.