Skip to content

Instantly share code, notes, and snippets.

@Kashif-E
Last active April 24, 2022 12:19
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 Kashif-E/1199ede7fc6a71a7337971f93e92a99d to your computer and use it in GitHub Desktop.
Save Kashif-E/1199ede7fc6a71a7337971f93e92a99d to your computer and use it in GitHub Desktop.
Adding Firebase app distribution
default_platform(:android)
platform :android do
desc "this lane uploads QA build to app testers"
lane :uploadQA do
gradle(
task: "clean assemble",
flavor: "qa",
build_type: "Debug"
)
firebase_app_distribution(
service_credentials_file: "firebase-distribution-key.json",
app: ENV['APP_ID_QA'],
release_notes: "Lots of amazing new features to test out!",
groups: "qa"
)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment