Skip to content

Instantly share code, notes, and snippets.

@object2dot0
Created December 1, 2015 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save object2dot0/7c9e759c9b595583a9ba to your computer and use it in GitHub Desktop.
Save object2dot0/7c9e759c9b595583a9ba to your computer and use it in GitHub Desktop.
#!/bin/sh
# GoogleAnalytics_keys.sh
# iOSConsumerApp
#
# Created by Muhammad Tanveer on 9/17/15.
# Copyright (c) 2015 iCarAsia. All rights reserved.
if [ ${TARGET_NAME} = "iOSConsumerApp" ]; then
the_googleanalytics_development_api_key="UA-XXXXXX-XX"
the_googleanalytics_production_api_key="UA-XXXXXX-XX"
elif [ ${TARGET_NAME} = "iOSConsumerApp-ID" ]; then
the_googleanalytics_development_api_key="UA-XXXXXX-XX"
the_googleanalytics_production_api_key="UA-XXXXXX-XX"
elif [ ${TARGET_NAME} = "iOSConsumerApp-TH" ]; then
#Dummy values
the_googleanalytics_development_api_key="UA-XXXXXX-XX"
the_googleanalytics_production_api_key="UA-XXXXXX-XX"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment