{"id":21565,"date":"2015-06-23T18:35:17","date_gmt":"2015-06-23T13:05:17","guid":{"rendered":"https:\/\/2thenew.today\/blog\/?p=21565"},"modified":"2022-01-11T11:53:07","modified_gmt":"2022-01-11T06:23:07","slug":"working-with-multiple-build-environments-in-ios","status":"publish","type":"post","link":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/","title":{"rendered":"Working with multiple build environments in iOS"},"content":{"rendered":"<p style=\"text-align: left;\">While <a title=\"iOS Application Development Services\" href=\"https:\/\/2thenew.today\/mobile-ios-application-development-services\">working in any iOS application<\/a>, we need to build our app for multiple environments i.e. <i>Development, Production, UAT, QA<\/i>. Now a days it becomes a common practice for any app to integrate <i>social media, analytics, crash reporter, third party tools, sdks<\/i> inside apps. Each of these environment have different set of urls to point to these servers, keys for these <i>social media, analytics, crash reporter, third party tools, sdks<\/i>.<\/p>\n<p>If we are integrating many <i>third party tools, social media platforms, sdks<\/i> in our app then it becomes <a title=\"iOS App Creator\" href=\"https:\/\/2thenew.today\/mobile-ios-application-development-services\">more complex for a iOS developer<\/a>, while running the app for different environment, ensure that app is using the correct keys for these <i>third party tools, social media platforms, sdks<\/i> for the particular environment.<\/p>\n<p>For the simplex and correct use of these servers with correct set of keys we have to work with multiple Xcode schemes and custom project configurations for build environments inside the app. We need to be able to quickly and easily switch between configurations without messing with compiler flags or manually modifying variables in your project.<\/p>\n<p><strong>Create A New Project:<\/strong><\/p>\n<p>when we create a new project, select your project in the project navigator and see info tab, it automatically comes with 1 scheme (named with project name) and 2 configurations (named \u2018Debug\u2019 &amp; \u2018Release\u2019) without any configuration file.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-21568\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/06\/14.png\" alt=\"1\" width=\"1243\" height=\"771\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><strong>Creating Configurations:<\/strong><\/p>\n<p>We will go ahead by creating <i>Development, Production, UAT, QA<\/i> environments. So we will create 4 configurations each for an environment.<\/p>\n<p>Click the + button below the configuration tab, select \u2018duplicate debug\u2019 for each new configuration and provide the name for it.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-21570\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/06\/32.png\" alt=\"3\" width=\"1244\" height=\"777\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><strong>Adding Xcode Schemes:<\/strong><\/p>\n<p>Add Xcode scheme for each of these environments by following the steps below.<\/p>\n<ol>\n<li>\u00a0Click the current scheme, select New Scheme from the menu that appears<\/li>\n<li>\u00a0Name the new scheme Development.<\/li>\n<li>\u00a0With the new scheme selected, click the scheme and select Edit Scheme from the menu.<\/li>\n<li>\u00a0Select Run Configurable from the left pane, open the Info tab at the top, and set the Build Configuration to Development.<\/li>\n<li>\u00a0Create an Xcode scheme for the <em>UAT , QA<\/em> and <em>Production<\/em> configurations by repeating the above steps.<\/li>\n<\/ol>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-21571\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/06\/42.png\" alt=\"4\" width=\"1245\" height=\"800\" \/><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-21572\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/06\/51.png\" alt=\"5\" width=\"1242\" height=\"800\" \/><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-21573\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/06\/61.png\" alt=\"6\" width=\"1243\" height=\"800\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><strong>Adding Configuration Settings File:<\/strong><\/p>\n<p>Add Configuration Settings File in your project.<\/p>\n<ol>\n<li>\u00a0Select project in your project navigator pane.<\/li>\n<li>\u00a0Click + button below in project navigator pane. Select file option.<\/li>\n<li>\u00a0Select other under iOS section. Select configuration Settings file. Click next. Name it and add.<\/li>\n<li>\u00a0repeat 1-3 for each configuration.<\/li>\n<\/ol>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-21574\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/06\/71.png\" alt=\"7\" width=\"1242\" height=\"800\" \/><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-21575\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/06\/82.png\" alt=\"8\" width=\"1245\" height=\"800\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><strong>Select Configuration Files for the Configurations:<\/strong><\/p>\n<p>Select Project in Project navigator pane. Go to configurations section. Expand Development, select <em>development<\/em> configuration file for it in all three section.<\/p>\n<p>Repeat the above process for <em>UAT , QA<\/em> and <em>Production<\/em>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-21576\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/06\/92.png\" alt=\"9\" width=\"1244\" height=\"800\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><strong>Adding Environment variables in configuration file:<\/strong><\/p>\n<p>Add your entries in Configuration files i.e. I will add some key for Base_url and protocol to call a web service.<\/p>\n<pre><em>BASE_URL = fameplus-api.qa3.intelligrape.net<\/em>\r\n\r\n<em>PROTOCOL = http<\/em>\r\n<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-21577\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/06\/103.png\" alt=\"10\" width=\"1241\" height=\"800\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><strong>Add environment variables into Info.plist:<\/strong><\/p>\n<p>Add the entries in<em> info.plist<\/em> file as well.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-21578\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/06\/112.png\" alt=\"11\" width=\"1246\" height=\"800\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><strong>Code to fetch environment variables:<\/strong><\/p>\n<p>Now to fetch base url and protocol from info.plist use following code.<\/p>\n<pre><em>baseUrl = [[NSBundle mainBundle] infoDictionary][@\"BaseUrl\"];<\/em>\r\n\r\n<em>protocol = [[NSBundle mainBundle] infoDictionary][@\"Protocol\"];<\/em>\r\n<\/pre>\n<p>Now select the particular scheme to run the app in particular environment.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>While working in any iOS application, we need to build our app for multiple environments i.e. Development, Production, UAT, QA. Now a days it becomes a common practice for any app to integrate social media, analytics, crash reporter, third party tools, sdks inside apps. Each of these environment have different set of urls to point [&hellip;]<\/p>\n","protected":false},"author":117,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":31,"footnotes":""},"categories":[1400,1],"tags":[1906,4848,1907,1909,1908],"class_list":["post-21565","post","type-post","status-publish","format-standard","hentry","category-ios","category-technology","tag-build-environments","tag-ios","tag-ios-build","tag-ios-flavours","tag-ios-xcode-schemes"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"While working in any iOS application, we need to build our app for multiple environments i.e. Development, Production, UAT, QA. Now a days it becomes a common practice for any app to integrate social media, analytics, crash reporter, third party tools, sdks inside apps. Each of these environment have different set of urls to point\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"vishal.gupta\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Working with multiple build environments in iOS | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"While working in any iOS application, we need to build our app for multiple environments i.e. Development, Production, UAT, QA. Now a days it becomes a common practice for any app to integrate social media, analytics, crash reporter, third party tools, sdks inside apps. Each of these environment have different set of urls to point\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"article:tag\" content=\"ios\" \/>\n\t\t<meta property=\"article:tag\" content=\"technology\" \/>\n\t\t<meta property=\"article:tag\" content=\"build environments\" \/>\n\t\t<meta property=\"article:tag\" content=\"ios build\" \/>\n\t\t<meta property=\"article:tag\" content=\"ios flavours\" \/>\n\t\t<meta property=\"article:tag\" content=\"ios xcode schemes\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-06-23T13:05:17+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2022-01-11T06:23:07+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Working with multiple build environments in iOS | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"While working in any iOS application, we need to build our app for multiple environments i.e. Development, Production, UAT, QA. Now a days it becomes a common practice for any app to integrate social media, analytics, crash reporter, third party tools, sdks inside apps. Each of these environment have different set of urls to point\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/working-with-multiple-build-environments-in-ios\\\/#article\",\"name\":\"Working with multiple build environments in iOS | TO THE NEW Blog\",\"headline\":\"Working with multiple build environments in iOS\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vishal-gupta\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2015\\\/06\\\/14.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/working-with-multiple-build-environments-in-ios\\\/#articleImage\"},\"datePublished\":\"2015-06-23T18:35:17+05:30\",\"dateModified\":\"2022-01-11T11:53:07+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/working-with-multiple-build-environments-in-ios\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/working-with-multiple-build-environments-in-ios\\\/#webpage\"},\"articleSection\":\"iOS, Technology, build environments, iOS, iOS Build, iOS flavours, iOS xcode schemes\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/working-with-multiple-build-environments-in-ios\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/working-with-multiple-build-environments-in-ios\\\/#listItem\",\"name\":\"Working with multiple build environments in iOS\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/working-with-multiple-build-environments-in-ios\\\/#listItem\",\"position\":3,\"name\":\"Working with multiple build environments in iOS\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vishal-gupta\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vishal-gupta\\\/\",\"name\":\"vishal.gupta\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/working-with-multiple-build-environments-in-ios\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/abfcdc3ab6fcfb7b68f54fb51ce6f5928b015725d2e54c94aec598a9ab668c0c?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"vishal.gupta\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/working-with-multiple-build-environments-in-ios\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/working-with-multiple-build-environments-in-ios\\\/\",\"name\":\"Working with multiple build environments in iOS | TO THE NEW Blog\",\"description\":\"While working in any iOS application, we need to build our app for multiple environments i.e. Development, Production, UAT, QA. Now a days it becomes a common practice for any app to integrate social media, analytics, crash reporter, third party tools, sdks inside apps. Each of these environment have different set of urls to point\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/working-with-multiple-build-environments-in-ios\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vishal-gupta\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vishal-gupta\\\/#author\"},\"datePublished\":\"2015-06-23T18:35:17+05:30\",\"dateModified\":\"2022-01-11T11:53:07+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Working with multiple build environments in iOS | TO THE NEW Blog","description":"While working in any iOS application, we need to build our app for multiple environments i.e. Development, Production, UAT, QA. Now a days it becomes a common practice for any app to integrate social media, analytics, crash reporter, third party tools, sdks inside apps. Each of these environment have different set of urls to point","canonical_url":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/#article","name":"Working with multiple build environments in iOS | TO THE NEW Blog","headline":"Working with multiple build environments in iOS","author":{"@id":"https:\/\/2thenew.today\/blog\/author\/vishal-gupta\/#author"},"publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2015\/06\/14.png","@id":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/#articleImage"},"datePublished":"2015-06-23T18:35:17+05:30","dateModified":"2022-01-11T11:53:07+05:30","inLanguage":"en-US","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/#webpage"},"articleSection":"iOS, Technology, build environments, iOS, iOS Build, iOS flavours, iOS xcode schemes"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.today\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.today\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/#listItem","name":"Working with multiple build environments in iOS"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/#listItem","position":3,"name":"Working with multiple build environments in iOS","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.today\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.today\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.today\/blog\/author\/vishal-gupta\/#author","url":"https:\/\/2thenew.today\/blog\/author\/vishal-gupta\/","name":"vishal.gupta","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/abfcdc3ab6fcfb7b68f54fb51ce6f5928b015725d2e54c94aec598a9ab668c0c?s=96&d=mm&r=g","width":96,"height":96,"caption":"vishal.gupta"}},{"@type":"WebPage","@id":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/#webpage","url":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/","name":"Working with multiple build environments in iOS | TO THE NEW Blog","description":"While working in any iOS application, we need to build our app for multiple environments i.e. Development, Production, UAT, QA. Now a days it becomes a common practice for any app to integrate social media, analytics, crash reporter, third party tools, sdks inside apps. Each of these environment have different set of urls to point","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.today\/blog\/author\/vishal-gupta\/#author"},"creator":{"@id":"https:\/\/2thenew.today\/blog\/author\/vishal-gupta\/#author"},"datePublished":"2015-06-23T18:35:17+05:30","dateModified":"2022-01-11T11:53:07+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.today\/blog\/#website","url":"https:\/\/2thenew.today\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"article","og:title":"Working with multiple build environments in iOS | TO THE NEW Blog","og:description":"While working in any iOS application, we need to build our app for multiple environments i.e. Development, Production, UAT, QA. Now a days it becomes a common practice for any app to integrate social media, analytics, crash reporter, third party tools, sdks inside apps. Each of these environment have different set of urls to point","og:url":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/","og:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","article:tag":{"0":"ios","1":"technology","2":"build environments","4":"ios build","5":"ios flavours","6":"ios xcode schemes"},"article:published_time":"2015-06-23T13:05:17+00:00","article:modified_time":"2022-01-11T06:23:07+00:00","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Working with multiple build environments in iOS | TO THE NEW Blog","twitter:description":"While working in any iOS application, we need to build our app for multiple environments i.e. Development, Production, UAT, QA. Now a days it becomes a common practice for any app to integrate social media, analytics, crash reporter, third party tools, sdks inside apps. Each of these environment have different set of urls to point","twitter:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"21565","title":null,"description":null,"keywords":[],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"article","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"#aioseo-article-65e05015a9705","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"limit_modified_date":false,"created":"2021-04-30 02:48:00","updated":"2024-02-29 09:36:21","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.today\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.today\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tWorking with multiple build environments in iOS\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.today\/blog"},{"label":"Technology","link":"https:\/\/2thenew.today\/blog\/category\/technology\/"},{"label":"Working with multiple build environments in iOS","link":"https:\/\/2thenew.today\/blog\/working-with-multiple-build-environments-in-ios\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/21565","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/users\/117"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/comments?post=21565"}],"version-history":[{"count":1,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/21565\/revisions"}],"predecessor-version":[{"id":54513,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/21565\/revisions\/54513"}],"wp:attachment":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/media?parent=21565"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/categories?post=21565"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/tags?post=21565"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}