Created
May 3, 2019 09:10
-
-
Save kwmt/6a2e15b8cc984cef9da44dea5f56425f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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