Describe the bug
My game only request 'basic profile' permission on Epic Account Services. However the sdk is adding 'friends list' permission
To Reproduce
Steps to reproduce the behavior:
- Set Application Permission to only basic profile on Epic Account Services
- Install com.playeveryware.eos-3.3.6.tgz and set configurations.
- Make sure Auth Scope Flags only uses Basic Profile
- Deploy AuthAndFriends scene to device
- Try login with Account Portal
Expected behavior
A clear and concise description of what you expected to happen.
Smartphone (please complete the following information):
- Device: Pixel 4 or 7
- OS: Android 13
- Unity 2022.3.53
- com.playeveryware.eos-3.3.6.tgz
void MigrateNonOverrideableConfigValues()
authScopeOptionsFlags |= AuthScopeFlags.BasicProfile;
authScopeOptionsFlags |= AuthScopeFlags.FriendsList;
authScopeOptionsFlags |= AuthScopeFlags.Presence;