In many code snippets in official tutorials references to classes from Tizen.Xamarin.Forms.Extension namespace are made. A nuget package of that name is referenced by projects in Tizen-CSharp-Samples repository on GitHub. The problem is that I can't seem to find this library enywhere, not on NuGet, not in my system. I have the latest version of the SDK and everything installed my the Package Manager. Am I missing something? I'm trying to show an RTSP stream using this code from the tutorial but can't compile it because of missing reference to the extension library:
var mediaView = new Tizen.Xamarin.Forms.Extension.MediaView(); mediaView.NativeViewCreated += (s, e) => { player.Display = new Display((Tizen.Multimedia.MediaView)mediaView.NativeView); };