summaryrefslogtreecommitdiff
path: root/SmartDeviceLink_Example
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2018-02-23 16:35:49 -0500
committerNicoleYarroch <nicole@livio.io>2018-02-23 16:35:49 -0500
commit55b42dde34d60b13dcbd884fc3d8f393fb070689 (patch)
tree3cc025799f350a60cc7d91b0367a8952e8fadd91 /SmartDeviceLink_Example
parentf0638536ac3655b4f4e6dd3ee20f71c17df5c1ff (diff)
downloadsdl_ios-55b42dde34d60b13dcbd884fc3d8f393fb070689.tar.gz
Deprecated `SDLArtwork` methods
- added new `init`s for SDLArtwork
Diffstat (limited to 'SmartDeviceLink_Example')
-rw-r--r--SmartDeviceLink_Example/Classes/ProxyManager.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink_Example/Classes/ProxyManager.m b/SmartDeviceLink_Example/Classes/ProxyManager.m
index 246273df4..3ad138161 100644
--- a/SmartDeviceLink_Example/Classes/ProxyManager.m
+++ b/SmartDeviceLink_Example/Classes/ProxyManager.m
@@ -173,8 +173,8 @@ NS_ASSUME_NONNULL_BEGIN
}
+ (SDLLifecycleConfiguration *)sdlex_setLifecycleConfigurationPropertiesOnConfiguration:(SDLLifecycleConfiguration *)config {
- SDLArtwork *appIconArt = [SDLArtwork persistentArtworkWithImage:[UIImage imageNamed:@"AppIcon60x60@2x"] name:@"AppIcon" asImageFormat:SDLArtworkImageFormatPNG];
-
+ SDLArtwork *appIconArt = [SDLArtwork persistentArtworkWithImage:[UIImage imageNamed:@"AppIcon60x60@2x"] asImageFormat:SDLArtworkImageFormatPNG];
+
config.shortAppName = @"SDL Example";
config.appIcon = appIconArt;
config.voiceRecognitionCommandNames = @[@"S D L Example"];