Flutter generated ios files version control

Viewed 488

I have a flutter app that have been released to production several times, but last time I built I ran into some newly generated files out of /ios/build/XCBuildData, most of them named like random-desc.xcbuild or random-manifest.xcbuild and one build.db file.

I'm not sure why these files started showing up, but I can't seem to find information if they are to be checked in or ignored by .gitignore.

What do you guys think?

1 Answers

According to This Answer All the build folder should be ignored (including XCBuildData)

Related