ios distribution to firebase

This commit is contained in:
Gergely Hegedus 2023-09-04 15:34:31 +03:00
parent 59f2f6ee0f
commit cc2b65c3ae
4 changed files with 250 additions and 0 deletions

23
ios/fastlane/Fastfile Normal file
View file

@ -0,0 +1,23 @@
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:ios)
platform :ios do
desc "Description of what the lane does"
lane :custom_lane do
# add actions here: https://docs.fastlane.tools/actions
end
end