Created
April 25, 2017 19:06
-
-
Save saiday/cc7ca2cfb2ec5eca833603f28e78dd58 to your computer and use it in GitHub Desktop.
Add specific GoogleService-Info.plist
This file contains hidden or 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
if [ "${CONFIGURATION}" == "Release" ]; then | |
cp -r "${PROJECT_DIR}/{PATH}/GoogleService-Info-release.plist" "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app/GoogleService-Info.plist" | |
echo "Production plist copied" | |
elif [ "${CONFIGURATION}" == "Debug" ]; then | |
cp -r "${PROJECT_DIR}/{PATH}/GoogleService-Info-debug.plist" "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app/GoogleService-Info.plist" | |
echo "Development plist copied" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment