From c72f4ff88d257696c7b4bcde8e8d2ae81712ea43 Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Fri, 2 Oct 2015 13:23:26 -0700 Subject: [PATCH] Update default API url --- CodePushConfig.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CodePushConfig.m b/CodePushConfig.m index f4c3c6c..d5b7fd7 100644 --- a/CodePushConfig.m +++ b/CodePushConfig.m @@ -13,7 +13,7 @@ NSMutableDictionary *configuration; NSString *deploymentKey = [infoDictionary objectForKey:@"CodePushDeploymentKey"]; NSString *serverUrl = [infoDictionary objectForKey:@"CodePushServerUrl"]; if (!serverUrl) { - serverUrl = @"http://localhost:3000/"; + serverUrl = @"https://codepush.azurewebsites.net/"; } NSString *rootComponent = [infoDictionary objectForKey:@"CFBundleName"]; @@ -82,4 +82,4 @@ NSMutableDictionary *configuration; return configuration; } -@end \ No newline at end of file +@end