-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Xcode 16 build error "Missing argument label 'value'" #600
Comments
@brandonroth Thank you for raising the issue. Our team will look into it and provide an update soon. Also if you think, this is something you can contribute towards, feel free to open a PR and our team will be happy to look into it. |
iOS 18 adds a new Expression type to Foundation which conflicts with SQLite. Explicitly import SQLite's.
Hi! Is there any news or solution to this? I'm having the same problem. Thanks! @harsh62 |
hey sorry for the spam but I've seen that this has been fixed on here but this is not included in your last release (3.7.1). Would be possible to generate a new release including this change? Thanks. cc/ @thisisabhash @5d @ruisebas |
Hi @vveltri-parser, No new features are being added to the AppSync SDK for iOS, as called out in our documentation. Please also note that maintenance mode ended in September 1, 2024. So we advice you to migrate over to Amplify API. Thanks! |
This issue is now closed. Comments on closed issues are hard for our team to see. |
Describe the bug
iOS 18 and Xcode 16 adds a new
Expression
class to the standard library which conflicts withSQLite.Expression
used in AppSync code. This causes a build failure `Missing argument label 'value:' because compiler assumes we are talking about Swift.Expression.Adding a qualification to the affected files appears to fix the problem
typealias Expression = SQLite.Expression
.To Reproduce
Steps to reproduce the behavior:
0: Using Xcode 16.0 Beta, start a new iOS app/project.
3: Fails to build with error "Missing argument label 'value:' in call" anywhere
Expression
type is used.Expected behavior
Should run without failure on Xcode 15 and 16.
Environment(please complete the following information):
Device Information (please complete the following information):
All devices
Additional context
The text was updated successfully, but these errors were encountered: