Hi there,
We’re facing an issue where we’re not receiving any aAmplitude] User ID at all under User Properties. Other things, such as Carrier, City, Country, Device family, Device type, DMA, IP address, Language, Library, OS, Platform, Region, Start version and Version are working normally.
Our app is built with Flutter and we’ve tested the Flutter plugin and User ID is set correctly.
This explains how we set it:
abstract class AmplitudeAnalysis {
static final _amplitudeAnalysis = Amplitude.getInstance();
static Future<void> init(String apiKey) async => _amplitudeAnalysis.init(apiKey);
static Future<void> setUserId(String userId) async => _amplitudeAnalysis.setUserId(userId, startNewSession: true);
And this explains where we set it (when the app fetches user profile after user is authenticated)
// Set user ID to analitycs
unawaited(AppsFlyer.init(profile.uuid));
unawaited(AmplitudeAnalysis.setUserId(profile.uuid));
Can someone help us out? For some reason we can’t seem to figure out why we’re not seein any User ID data in Amplitude?