summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2018-11-29 11:11:41 -0500
committerJoel Fischer <joeljfischer@gmail.com>2018-11-29 11:11:41 -0500
commitd29a99a4c82a0141a90a4ed2426484fd21c5900b (patch)
treeea69e0f4995cfb78eddd5b98f20fd621514a586d
parent78d020387ff243660972b372e17c8a400e4e851f (diff)
downloadsdl_ios-bugfix/issue_1132_rtp_ssrc_constant_suspension.tar.gz
-rw-r--r--Example Apps/Example ObjC/ProxyManager.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Example Apps/Example ObjC/ProxyManager.m b/Example Apps/Example ObjC/ProxyManager.m
index c25d4c3fc..a510c79ee 100644
--- a/Example Apps/Example ObjC/ProxyManager.m
+++ b/Example Apps/Example ObjC/ProxyManager.m
@@ -113,7 +113,7 @@ NS_ASSUME_NONNULL_BEGIN
}
- (void)sdlex_setupConfigurationWithLifecycleConfiguration:(SDLLifecycleConfiguration *)lifecycleConfiguration {
- SDLConfiguration *config = [SDLConfiguration configurationWithLifecycle:lifecycleConfiguration lockScreen:[SDLLockScreenConfiguration enabledConfigurationWithAppIcon:[UIImage imageNamed:ExampleAppLogoName] backgroundColor:nil] logging:[self.class sdlex_logConfiguration] streamingMedia:[SDLStreamingMediaConfiguration autostreamingInsecureConfigurationWithInitialViewController:[UIApplication sharedApplication].keyWindow.rootViewController] fileManager:[SDLFileManagerConfiguration defaultConfiguration]];
+ SDLConfiguration *config = [SDLConfiguration configurationWithLifecycle:lifecycleConfiguration lockScreen:[SDLLockScreenConfiguration enabledConfigurationWithAppIcon:[UIImage imageNamed:ExampleAppLogoName] backgroundColor:nil] logging:[self.class sdlex_logConfiguration] fileManager:[SDLFileManagerConfiguration defaultConfiguration]];
self.sdlManager = [[SDLManager alloc] initWithConfiguration:config delegate:self];
[self startManager];
@@ -129,7 +129,7 @@ NS_ASSUME_NONNULL_BEGIN
config.ttsName = [SDLTTSChunk textChunksFromString:ExampleAppName];
config.language = SDLLanguageEnUs;
config.languagesSupported = @[SDLLanguageEnUs, SDLLanguageFrCa, SDLLanguageEsMx];
- config.appType = SDLAppHMITypeNavigation;
+ config.appType = SDLAppHMITypeDefault;
SDLRGBColor *green = [[SDLRGBColor alloc] initWithRed:126 green:188 blue:121];
SDLRGBColor *white = [[SDLRGBColor alloc] initWithRed:249 green:251 blue:254];