I have an iOS app that I\'d like to restrict access to, making it only available to users from a specific email domain. The app requires the users to log in using their Google A
Include the email and password sign up option and just check for domains within your app. This will be a simple string comparison test on the email address.
Or just spin up a server to which you'll be sending the emails to for verification. This way you wouldn't have to push out new updates every time you add an extra domain. You can try and see if cloud functions would be helpful instead of spinning up a new server.