Hi everyone,
I opened my Tauri generated iOS project on Xcode to change the deployment target to iOS 18, but Tauri isn't too happy about it.
This is the file I opened: app/src-tauri/gen/apple/travelapp.xcodeproj/project.pbxproj
After I did this, I ran tauri ios dev --force-ip-prompt iPhone15 and got the following error:
** BUILD FAILED **
The following build commands failed:
Building workspace travelapp with scheme travelapp_iOS and configuration debug
(1 failure)
command ["xcodebuild"] exited with code 65
Error command ["xcodebuild"] exited with code 65
error: script "dev:sim" exited with code 1
Xcode suggests updating some configurations when changing the deployment target, but the error remains the same in both cases.
I also ran tauri ios init to generate a new project file, and then change the deployment target, but that didn't work either.
What's the proper way to change the deployment target and have the iOS app work properly. Thanks