Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Alberto Cabrera committed Jan 12, 2024
1 parent 0e3c713 commit 2d9ac0b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ios/.env.default
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ APP_RELEASE_BUNDLE_IDENTIFIER = "com.missionhub"
APP_STORE_CONNECT_API_KEY_JSON_FILE_PATH = "./fastlane/AppleAppStoreAPI.json"

## Code Signing
# CODE_SIGNING_APP_BUNDLE_IDS = "com.missionhub"
# CODE_SIGNING_PROVISIONING_PROFILE_NAMES = "match AppStore com.missionhub"
# CODE_SIGNING_TARGETS = "MissionHub"
# CODE_SIGNING_TEAM_ID = "DQ48D9BF2V"
CODE_SIGNING_APP_BUNDLE_IDS = "com.missionhub"
CODE_SIGNING_PROVISIONING_PROFILE_NAMES = "match AppStore com.missionhub"
CODE_SIGNING_TARGETS = "MissionHub"
CODE_SIGNING_TEAM_ID = "DQ48D9BF2V"

## Match
MATCH_GIT_BRANCH = "master"
Expand Down
7 changes: 7 additions & 0 deletions ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,12 @@ target 'MissionHub' do
target.build_phases.move(phase,0)
end
end

installer.pods_project.targets.each do |target|
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end

0 comments on commit 2d9ac0b

Please sign in to comment.