Skip to content

Instantly share code, notes, and snippets.

@PaulTaykalo
Created August 26, 2016 13:05
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PaulTaykalo/9d588bb557093a8394224959e286da7f to your computer and use it in GitHub Desktop.
Save PaulTaykalo/9d588bb557093a8394224959e286da7f to your computer and use it in GitHub Desktop.
Fastlane's Appfile for multiple users support
# In big teams instead of specifying one email to rule them all as apple_id
# You can get this information from environment variable
# By doing this it will allow different developers to specify their own apple ids
# And if this env variable is not required - then it will be asked on any command that requires apple_id
apple_id ENV["MY_APP_NAME_APPLE_ID"] # Your Apple email address
### ~/.bashrc of some user
export MY_APP_NAME_APPLE_ID="someuser@gmail.com"
### ~/.bashrc of some another user
export MY_APP_NAME_APPLE_ID="someanotheruser@gmail.com"
@iddar
Copy link

iddar commented Nov 12, 2020

Thanks for this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment