Is it possible to configure Crashlytics on iOS without installing the application on each developer's workstation?

Crashlytics Looks like the best crash reporting solution in iOS, but the application is noisy and bypasses.

Since our assembly Ad-Hocand App-Storecome from the server CI, we do not need each developer's workstation to upload files .dSYMto the server.

Is it possible to configure it so that only the CI server deals with Crashlytics?

+4
source share
2 answers

We do this in our Run Script phase:

if [ ${CONFIGURATION} == "Release" ]
then
  ./Fabric.framework/run <magic> <number>
fi

Thus, developers usually use the Debug assembly, but if they want to assemble the finished product, they can do it.

, CI, xcodebuild, - USE_CRASHLYTICS, .

+2

. , . - Cocoapods. , , , Git, .

0

Source: https://habr.com/ru/post/1540740/


All Articles