You can follow the next steps to add all frameworks to the git lfs:
brew install git-lfs # install via homebrew
git lfs install # initialize lfs for yor repo
git lfs track ios-app/Frameworks/*.framework/**/* # track all frameworks in your project
git add --all # stage
git commit -m "Added files to git lfs" # commit
git lfs ls-files # check that files are tracked
Eventually you should get the next result:
9ee501fdc8 * ios-app/Frameworks/Lottie.framework/Headers/Lottie-Swift.h
8fa3ecc835 * ios-app/Frameworks/Lottie.framework/Info.plist
4a870aa4cc * ios-app/Frameworks/Lottie.framework/Lottie
Take into account that this will not convert any pre-existing files to Git LFS (from other branches or in your prior commit history). To do that, use the git lfs migrate command:
git lfs migrate import --include='ios-app/Frameworks/*.framework/**/*' --everything