Miss non-organic events IOS
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
did you solve it? I'm having the same issue
Same issue
Im having the same issue
i solved my issue on IOS with app_tracking_transparency
@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?
@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 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)?
@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)