appsflyer-flutter-plugin icon indicating copy to clipboard operation
appsflyer-flutter-plugin copied to clipboard

Miss non-organic events IOS

Open r4doshka opened this issue 3 years ago • 8 comments

In my application I am trying to collect data using logEvent method from appsflyer sdk, in IOS i only see non-organic installs other non-organic events cant. On android its work well.

i use this function to pass events

Future<bool?> logEvent(String eventName, Map? eventValues) async {
  bool? result;
  try {
    result = await appsflyerSdk.logEvent(eventName, eventValues);
    return result;
  } on Exception catch (e) {}
  print("Result logEvent: $eventName: $result");
  return result;
}

Expected behavior: I want to see every non-organic event in my Dashboard.

Smartphone: iPhone 10, iPhone 11, iPhone 12

r4doshka avatar Jul 11 '22 11:07 r4doshka

did you solve it? I'm having the same issue

mazenashgar avatar Dec 02 '22 18:12 mazenashgar

Same issue

otopba avatar Mar 23 '23 12:03 otopba

Im having the same issue

david-landeros avatar Apr 12 '23 21:04 david-landeros

i solved my issue on IOS with app_tracking_transparency

r4doshka avatar Apr 13 '23 05:04 r4doshka

@r4doshka can you please elaborate a bit on how you managed to resolve the issue I've been struggling with for days? Also, are you on a zero (free) plan?

irfanakram825 avatar Aug 23 '23 16:08 irfanakram825

@irfan-429 I just use app_tracking_transparency before init appsFlyer (free plan)

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
   await AppTrackingTransparency.requestTrackingAuthorization();
   AppsFlyerService appsFlyerService = AppsFlyerService();
   appsFlyerService.initState();
}

r4doshka avatar Aug 25 '23 06:08 r4doshka

@r4doshka Thanks for sharing that. I need to know how you test the integration. Did you test it using Stores or simply running the app in debug mode through IDE (without scanning the QR code stated in AppsFlyer doc)?

irfanakram825 avatar Aug 25 '23 09:08 irfanakram825

@irfan-429 i do all like in docs, with scanning and etc

Important Notice: be better if u check installs on real devices (ios/android)

r4doshka avatar Aug 28 '23 07:08 r4doshka