diff --git a/appsflyer/src/main/java/com/rudderstack/android/integrations/appsflyer/AppsFlyerIntegrationFactory.java b/appsflyer/src/main/java/com/rudderstack/android/integrations/appsflyer/AppsFlyerIntegrationFactory.java index b1e0aca..d17f9c0 100644 --- a/appsflyer/src/main/java/com/rudderstack/android/integrations/appsflyer/AppsFlyerIntegrationFactory.java +++ b/appsflyer/src/main/java/com/rudderstack/android/integrations/appsflyer/AppsFlyerIntegrationFactory.java @@ -162,14 +162,14 @@ private void processEvents(RudderMessage message) { afEventProps.put(AFInAppEventParameterName.AD_REVENUE_AD_TYPE, property.get(CREATIVE)); if (property.containsKey(ECommerceParamNames.CURRENCY)) afEventProps.put(AFInAppEventParameterName.CURRENCY, property.get(ECommerceParamNames.CURRENCY)); - afEventName = AFInAppEventType.AD_CLICK; + afEventName = AFInAppEventType.AD_VIEW; break; case ECommerceEvents.PROMOTION_CLICKED: if (property.containsKey(CREATIVE)) afEventProps.put(AFInAppEventParameterName.AD_REVENUE_AD_TYPE, property.get(CREATIVE)); if (property.containsKey(ECommerceParamNames.CURRENCY)) afEventProps.put(AFInAppEventParameterName.CURRENCY, property.get(ECommerceParamNames.CURRENCY)); - afEventName = AFInAppEventType.AD_VIEW; + afEventName = AFInAppEventType.AD_CLICK; break; case ECommerceEvents.PAYMENT_INFO_ENTERED: afEventName = AFInAppEventType.ADD_PAYMENT_INFO;