mirror of
https://github.com/status-im/status-react.git
synced 2025-02-22 07:38:34 +00:00
Error: ``` There seems to be a mismatch between your provided `export_method` in gym and the selected provisioning profiles. You passed the following options: export_method: app-store Bundle identifier: im.status.ethereum.pr Profile name: match AdHoc im.status.ethereum.pr Profile type: ad-hoc Make sure to either change the `export_method` passed from your Fastfile or CLI or select the correct provisioning profiles by updating your Xcode project or passing the profiles to use by using match or manually via the `export_options` hash ``` Signed-off-by: Jakub Sokołowski <jakub@status.im>
20 lines
583 B
Plaintext
20 lines
583 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
|