levibostian / iOSBlanky

My opinionated iOS app boilerplate
MIT License
6 stars 5 forks source link

Upload missing dsyms via cron on CI #26

Closed levibostian closed 4 years ago

levibostian commented 5 years ago

Problem: Apps processed via Apple need to have the dsyms uploaded manually to crashlytics. Fastlane can do this for you, but at this time it's not being done automatically. This results in crashes occurring but not getting notified of them because if a dsym is missing, the crash is not shown in the dashboard.

Solution: Use Travis CI cron to run the upload dsyms task periodically to make sure we always have all of the dsyms uploaded for our builds.

levibostian commented 4 years ago

Done!