mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 10:42:53 +00:00
d916751160
Build PR Scheme in PR build use named parameters, use pr_build boolean Signed-off-by: Jakub Sokołowski <jakub@status.im> Enable capabilities Signed-off-by: Jakub Sokołowski <jakub@status.im> Add custom app icon Remove user defined profile Add PR scheme Explicit provide provisioning profiles Fix pr schema Bump jenkins Pod bump Describe pr_build argument Signed-off-by: Gheorghe Pinzaru <feross95@gmail.com>
20 lines
578 B
Plaintext
20 lines
578 B
Plaintext
# iOS
|
|
|
|
app_identifier('im.status.ethereum') # The bundle identifier of your app
|
|
apple_id(ENV['FASTLANE_APPLE_ID']) # Your Apple email address
|
|
itc_team_id('118430139') # iTunes Connect Team ID
|
|
|
|
for_platform :ios do
|
|
for_lane :pr do
|
|
app_identifier('im.status.ethereum.pr')
|
|
end
|
|
end
|
|
|
|
# Android
|
|
|
|
# json_key_file('') # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
|
|
package_name('im.status.ethereum') # e.g. com.krausefx.app
|
|
|
|
# For more information about the Appfile, see:
|
|
# https://docs.fastlane.tools/advanced/#appfile
|