Skip to content

Instantly share code, notes, and snippets.

@kwmt
Created May 3, 2019 09:10
Show Gist options
  • Save kwmt/6a2e15b8cc984cef9da44dea5f56425f to your computer and use it in GitHub Desktop.
Save kwmt/6a2e15b8cc984cef9da44dea5f56425f to your computer and use it in GitHub Desktop.
echo "GoogleService start"
#rm -rf "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app/GoogleService-Info.plist"
echo "-----${CONFIGURATION}-----"
echo "-----${SRCROOT}-----"
if [ "${CONFIGURATION}" = "Debug" ] || [ "${CONFIGURATION}" = "Debug-development" ] || [ "${CONFIGURATION}" = "Release-development" ]; then
cp "$SRCROOT/Runner/GoogleService-Info-development.plist" "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app/GoogleService-Info.plist"
echo "Development GoogleService-Info copied."
elif [ "${CONFIGURATION}" = "Release" ] || [ "${CONFIGURATION}" = "Release-production" ] || [ "${CONFIGURATION}" = "Debug-production" ]; then
cp "$SRCROOT/Runner/GoogleService-Info-production.plist" "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app/GoogleService-Info.plist"
echo "Production GoogleService-Info copied."
fi
echo "done"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment