cannot run on ios with sqlite3_flutter_libs: ^0.5.13
Describe the bug
after adding the sqlite3_flutter_libs , cannot run on ios
run in Xcode
run pod install

Have you tried running on a Physical device?
Have you tried running on a Physical device?
not yet, but it works fine while removing the sqlite3_flutter_libs pkg
after further testing , only sqlite3_flutter_libs causes the problem, I will update the issue's title
Does flutter clean help at all? I've not seen this error before, and I don't see how adding this dependency could cause that linker error. This StackOverflow question seems similar too, do the suggested answers help?
I noticed that 0.5.13 raises the min iOS version to 15 - maybe that is related.
I noticed that 0.5.13 raises the min iOS version to 15 - maybe that is related.
not for the reason , my ios version is 16.4
Does
flutter cleanhelp at all? I've not seen this error before, and I don't see how adding this dependency could cause that linker error. This StackOverflow question seems similar too, do the suggested answers help?
thank u, it helps a lot , and here is my solution

post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
end
I noticed that 0.5.13 raises the min iOS version to 15 - maybe that is related.
That wasn't intentional, and I don't really understand how that could have happened. In the pod, we still have the original platform constraint and the spec for sqlite3, our only external dependency, doesn't specify a min version either.
No activity in over a year & seems to be resolved, closing