ConnectSDK / Connect-SDK-iOS

iOS source project for Connect SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Casting Youtube to Chromecast not working

jjfster opened this issue · comments

I'm trying to send a Youtube video using your LaunchYoutube method.

The Youtube player launches to the splash screen and that is it.

```
    [self.device.launcher launchYouTube:urlString success:^(LaunchSession *launchSession)
        {
         if ([self.device hasCapability:kLauncherAppClose]) {
             _youtubeSession = launchSession;
         }

         } failure:^(NSError *error) {
             NSLog(@"display Youtube video failure: %@", error.localizedDescription);
         }];