Comments (1)
I found a workaround, you can disable it in Podfile post-install
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# Mute Xcode os-deprecation warnings
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] == '8.0'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
end
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] == '9.0'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
end
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] == '10.0'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
end
# Signing configuration
config.build_settings['DEVELOPMENT_TEAM'] = <your_team_id>
config.build_settings['CODE_SIGN_STYLE'] = 'Manual'
end
end
end
But it's just a workaround, I'd expect the lane to work correctly with update_code_signing_settings
command
UPD:
This fixes CI, but breaks local dev build integrity, so the actual problem was related to appboy-ios-sdk
dependency and I no longer need to setup signing after migrating import of this sdk to SPM and everything seems to work fine without config.build_settings['CODE_SIGN_STYLE'] = 'Manual'
from fastlane.
Related Issues (20)
- Hello, everything was working fine untill yesterday, but today I start getting an error HOT 1
- Hello, Fastlane error - provisioning profile HOT 1
- pod_push with sources not working HOT 1
- ERROR ITMS-90159: "Invalid provisioning profile. This app contains an embedded provisioning profile that is not associated with your account. Please use a provisioning profile associated with Team ID XXX." HOT 2
- App Store Connect transporter transfer failed HOT 29
- Getting fastlane error for deployment to app store through azure pipeline HOT 3
- delete_keychain should not fail if keychain doesn't exist.
- Unable to access certificates repo in GitHub Action HOT 1
- "No profiles for [bundle identifiers] were found" — when using `skip_archive: true`
- Could not find app build.gradle file HOT 1
- ERROR ITMS-90685: CFBundleIdentifier Collision. There is more than one bundle with the CFBundleIdentifier value 'XXX' under the iOS application 'Y.app'. HOT 1
- Invalid username and password combination
- security: SecKeychainSearchCopyNext: The specified item could not be found in the keychain.There are no local code signing identities found. HOT 1
- [!] Google Api Error: Invalid request - The caller does not have permission when uploading Android App bundle on MacOS HOT 2
- Supply stuck
- Running gym on jenkins node fails on export HOT 1
- Operation not permitted - /Users/username/Library/Accounts
- Cannot update languages - could not find an editable info HOT 1
- match does not download Developer ID intermediate certificates HOT 4
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.
from fastlane.