The iOS native SDK supports appAccountToken since v3.10.2:
Adapty.identify(customerUserId, withAppAccountToken: uuid)
But Flutter SDK doesn't have this parameter:
await Adapty().identify(customerUserId); // ❌ no appAccountToken
Please add:
await Adapty().identify(customerUserId, appAccountToken: uuid); // ✅
This is critical for:
- Proper webhook handling from Apple (appAccountToken in transactions)
- Matching purchases to correct user accounts
- Preventing subscription sharing abuse