Atrasado mas acho que devo postar essa resposta para ajudar novos desenvolvedores, encontrei um artigo muito bom que resolveu meu problema e prometo que pode te ajudar também :)
Confira este artigo que resolve seu problema também.
Etapa 1:
copie o GoogleService-Info.plist correspondente ao seu ambiente de desenvolvimento Firebase no diretório Dev . Da mesma forma, copie o GoogleService-Info.plist correspondente ao seu ambiente de produção do Firebase no diretório Prod . Certifique-se de desmarcar “Copiar itens se necessário” e todos os alvos em “Adicionar aos alvos” .
Etapa 2:
no navegador de projetos Xcode, selecione o destino do aplicativo. Alterne para a guia Build Phases na parte superior e, em seguida, adicione uma New Run Script Phase . Nomeie a fase “Setup Firebase Environment GoogleService-Info.plist” ou algo parecido e coloque-o antes da etapa “Copy Bundle Resources” .
Etapa 3:
implemente um script de shell que copiará o GoogleService-Info.plist apropriado no pacote de aplicativos com base na configuração de compilação. Copie e cole o seguinte script de shell na fase de execução do script que você acabou de criar:
# Name of the resource we're selectively copying
GOOGLESERVICE_INFO_PLIST=GoogleService-Info.plist
# Get references to dev and prod versions of the GoogleService-Info.plist
# NOTE: These should only live on the file system and should NOT be part of the target (since we'll be adding them to the target manually)
GOOGLESERVICE_INFO_DEV=${PROJECT_DIR}/${TARGET_NAME}/Firebase/Dev/${GOOGLESERVICE_INFO_PLIST}
GOOGLESERVICE_INFO_PROD=${PROJECT_DIR}/${TARGET_NAME}/Firebase/Prod/${GOOGLESERVICE_INFO_PLIST}
# Make sure the dev version of GoogleService-Info.plist exists
echo "Looking for ${GOOGLESERVICE_INFO_PLIST} in ${GOOGLESERVICE_INFO_DEV}"
if [ ! -f $GOOGLESERVICE_INFO_DEV ]
then
echo "No Development GoogleService-Info.plist found. Please ensure it's in the proper directory."
exit 1
fi
# Make sure the prod version of GoogleService-Info.plist exists
echo "Looking for ${GOOGLESERVICE_INFO_PLIST} in ${GOOGLESERVICE_INFO_PROD}"
if [ ! -f $GOOGLESERVICE_INFO_PROD ]
then
echo "No Production GoogleService-Info.plist found. Please ensure it's in the proper directory."
exit 1
fi
# Get a reference to the destination location for the GoogleService-Info.plist
PLIST_DESTINATION=${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app
echo "Will copy ${GOOGLESERVICE_INFO_PLIST} to final destination: ${PLIST_DESTINATION}"
# Copy over the prod GoogleService-Info.plist for Release builds
if [ "${CONFIGURATION}" == "Release" ]
then
echo "Using ${GOOGLESERVICE_INFO_PROD}"
cp "${GOOGLESERVICE_INFO_PROD}" "${PLIST_DESTINATION}"
else
echo "Using ${GOOGLESERVICE_INFO_DEV}"
cp "${GOOGLESERVICE_INFO_DEV}" "${PLIST_DESTINATION}"
fi