Skip to content

Commit

Permalink
[#169] Manual add keyId into Fastfile
Browse files Browse the repository at this point in the history
  • Loading branch information
doannimble committed Aug 9, 2023
1 parent 5e7ec0c commit 14ded82
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,16 @@ def self.PRODUCT_NAME_PRODUCTION
'{{app_name.titleCase()}}'
end

# App Store Connect API Key ID
def self.APP_STORE_KEY_ID
'3Q76PWRQN6'
end

# App Store Connect API Issuer ID
def self.APP_STORE_ISSUER_ID
'69a6de82-b7cb-47e3-e053-5b8c7c11a4d1'
end

# a main target name
def self.MAIN_TARGET_NAME
'Runner'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ platform :ios do
desc 'Set App Store Connect API key'
lane :set_connect_api_key do
app_store_connect_api_key(
key_id: Constants.APP_STORE_KEY_ID,
issuer_id: Constants.APP_STORE_ISSUER_ID,
key_id: '3Q76PWRQN6'
issuer_id: '69a6de82-b7cb-47e3-e053-5b8c7c11a4d1'
key_content: Environments.APPSTORE_CONNECT_API_KEY
)
end
Expand Down

0 comments on commit 14ded82

Please sign in to comment.