Skip to content

Instantly share code, notes, and snippets.

@andreas-nesheim
Last active October 16, 2017 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreas-nesheim/d1f7c34bb1e121cb5a0c64b34f8d0c7c to your computer and use it in GitHub Desktop.
Save andreas-nesheim/d1f7c34bb1e121cb5a0c64b34f8d0c7c to your computer and use it in GitHub Desktop.
# More documentation about how to customize your build
# can be found here:
# https://docs.fastlane.tools
fastlane_version "1.109.0"
# This value helps us track success metrics for Fastfiles
# we automatically generate. Feel free to remove this line
# once you get things running smoothly!
generated_fastfile_id "eaa63146-cce2-47fa-b5d5-4884f76ecada"
default_platform :ios
# Fastfile actions accept additional configuration, but
# don't worry, fastlane will prompt you for required
# info which you can add here later
lane :beta do
# build your iOS app
xamarin_build(
solution: '/Users/user/projects/path/to/project/ProjectSolution.sln',
platform: 'iPhone',
target: 'Build',
project: 'MyProjectName',
build_type: 'Debug',
print_all: true
)
# upload to HockeyApp
# hockey(
# api_token: "YOUR_API_TOKEN"
# )
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment