rootstrap/ios-base

View on GitHub
fastlane/Appfile

Summary

Maintainability
Test Coverage
# app_identifier("[[APP_IDENTIFIER]]") # The bundle identifier of your app
# apple_id("[[APPLE_ID]]") # Your Apple email address
 
 
# For more information about the Appfile, see:
# https://docs.fastlane.tools/advanced/#appfile
 
for_platform :ios do
 
apple_id(ENV['FASTLANE_USER'])
team_id(ENV['APPLE_TEAM_ID'])
 
for_lane :build_develop do
app_identifier('com.rootstrap.ios-base-develop')
end
 
for_lane :release_develop do
app_identifier('com.rootstrap.ios-base-develop')
end
 
for_lane :build_staging do
app_identifier('com.rootstrap.ios-base-staging')
end
 
for_lane :release_staging do
app_identifier('com.rootstrap.ios-base-staging')
end
 
for_lane :build_production do
app_identifier('com.rootstrap.ios-base-production')
end
 
for_lane :release_production do
app_identifier('com.rootstrap.ios-base-production')
end
 
end