I am building an app using Flutter. I can run it on the simulator, but when I try to archive it for upload to the App Store via Xcode I get this error:
.../ios/Pods/Target Support Files/sqflite/sqflite-umbrella.h:13:9 double-quoted include "SqfliteCursor.h" in framework header, expected angle-bracketed instead
I was try some method, but nothing has changed, like:
- Change value
Change value of CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER to NO
- remove ios folder
- Backup Runner folder
- delete Ios folder (it will automatically create folder ios)
- then, copy Runner to ios folder
- run flutter create . (flutter will build some missing file)
- cd ios/, and then run pod install
- cd .., then flutter run, it will success run on simulator. but i still got same error when try to archive

