AppsFlyerSDK / AdobeAirExtension-AppsFlyer

Adobe Air Extension for AppsFlyer
24 stars 22 forks source link

Add custom event into the example #15

Closed skolesnyk closed 5 years ago

skolesnyk commented 7 years ago

Track inapp purchase without verification

public function trackInappPurchase(product:String, revenue:Number, currency:String):void {
            var param:String = "af_purchase";
            var value:Object = {
                "af_content_id": product,
                "af_revenue": revenue ,
                "af_currency": currency
            };
            appsFlyer.trackEvent(param, JSON.stringify(value));

        }