Firebase Crashlytics setup on iOS?

前端 未结 6 866
小鲜肉
小鲜肉 2021-02-03 17:13

I\'m trying to integrate Firebase Crashlytics into iOS my app, which has Firebase Crash Reporting enabled. I\'ve followed the documentation here, but my build a

6条回答
  •  深忆病人
    2021-02-03 18:02

    If you're using Crashlytics, you might have to go into your Build Phases -> Crashlytics configuration and add it into the shell/bin/sh section like this: `set -e

    if [[ ${PODS_ROOT} ]]; then echo "info: Exec Fabric Run from Pods" "${PODS_ROOT}/Fabric/run" YOUR KEY HERE else echo "info: Exec Fabric Run from framework" "${PROJECT_DIR}/Fabric.framework/run" YOUR KEY HERE fi`

提交回复
热议问题