Created
September 28, 2012 22:28
-
-
Save 40/3802394 to your computer and use it in GitHub Desktop.
Unbound Invocation of the Media Previewer in BB10 Cascades
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Invocation Framework decides which app to use to open file based on type of file | |
| void App::invokeUnbound(){ | |
| InvokeRequest cardRequest; | |
| cardRequest.setUri("file:///accounts/1000/shares/videos/video.mp4"); | |
| InvokeManager invokeManager; | |
| invokemanager.invoke(cardRequest); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void App::invokeUnbound(){ | |
| InvokeRequest cardRequest; | |
| cardRequest.setUri("file:///accounts/1000/shares/videos/video.mp4"); | |
| InvokeManager invokeManager; | |
| invokemanager.invoke(cardRequest); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment