We used to have an old format for handling user ids that we currently use to initialize RevenueCat with. What are the downstream implications if we need to change the user id format for all users? More specifically:
- Would there be a chance that the client gets out of sync from Google Play/App Store?
- What are the downstream implications in RevenueCat’s dashes/data reporting?
- Are there any other implications from changing the user id format?
We are using Flutter so the code diff would be:
# current code
await Purchases.setup(_api, appUserId: oldUserIdString);
# new code
await Purchases.setup(_api, appUserId: newUserIdString);