diff --git a/xamarin-android-toc.html b/xamarin-android-toc.html
index bfa5f46f..9f07d890 100644
--- a/xamarin-android-toc.html
+++ b/xamarin-android-toc.html
@@ -790,7 +790,7 @@
Release Notes
- - 2021 Volume 4 - v19.4.0.*
- 2021 volume 3 - v19.3.0.*
- 2021 Volume 2 - v19.2.0.*
- 2021 Volume 1 - v19.1.0.*
- 2020 Volume 4 - v18.4.0.*
- 2020 Volume 3 - v18.3.0.*
- 2020 Volume 2 - v18.2.0.*
- 2020 Volume 1 - v18.1.0.*
- 2019 Volume 4 - v17.4.0.*
+ - 2021 Volume 4 - v19.4.0.*
- 2021 volume 3 - v19.3.0.*
- 2021 Volume 2 - v19.2.0.*
- 2021 Volume 1 - v19.1.0.*
- 2020 Volume 4 - v18.4.0.*
- 2020 Volume 3 - v18.3.0.*
- 2020 Volume 2 - v18.2.0.*
- 2020 Volume 1 - v18.1.0.*
- 2019 Volume 4 - v17.4.0.*
- 2019 Volume 3 - v17.3.0.*
- Weekly Nuget Release
diff --git a/xamarin-android/Release-Notes/v19.4.0.56.md b/xamarin-android/Release-Notes/v19.4.0.56.md
new file mode 100644
index 00000000..3cef07cf
--- /dev/null
+++ b/xamarin-android/Release-Notes/v19.4.0.56.md
@@ -0,0 +1,16 @@
+---
+title: Essential Studio for Xamarin.Android Weekly Nuget Release Release Notes
+description: Essential Studio for Xamarin.Android Weekly Nuget Release Release Notes
+platform: Xamarin.Android
+documentation: ug
+---
+
+# Essential Studio for Xamarin.Android Release Notes
+
+{% include release-info.html date="March 15, 2022" version="v19.4.0.56" %}
+
+{% directory path: _includes/release-notes/v19.4.0.56 %}
+
+{% include {{file.url}} %}
+
+{% enddirectory %}
\ No newline at end of file
diff --git a/xamarin-android/SfPdfViewer/Getting-Started.md b/xamarin-android/SfPdfViewer/Getting-Started.md
index 3188c8d7..635575a8 100644
--- a/xamarin-android/SfPdfViewer/Getting-Started.md
+++ b/xamarin-android/SfPdfViewer/Getting-Started.md
@@ -83,6 +83,27 @@ protected override void OnCreate(Bundle bundle)
Deploying this project in the Android device would display the PDF document and allow you to scroll and zoom through the pages.
+## Loading a PDF from an URL
+
+PDF documents can be loaded from a given URL into the PdfViewer by downloading the PDF and then loading the stream of the downloaded file into the PdfViewer. In the following code sample, the `HttpClient.GetAsync( )` method sends a GET request to the specified Uri as an asynchronous operation and the `HttpContent.ReadAsStreamAsync( )` method will serialize the HTTP content and returns a stream that represents the content as an asynchronous operation. Finally, the obtained stream is passed to the `LoadDocument( )` method of SfPdfViewer.
+
+{% tabs %}
+{% highlight c# %}
+
+HttpClient httpClient = new HttpClient();
+HttpResponseMessage response = await httpClient.GetAsync("https://www.syncfusion.com/downloads/support/directtrac/general/pd/GIS_Succinctly1774404643.pdf");
+Stream pdfStream = await response.Content.ReadAsStreamAsync();
+pdfViewerControl.LoadDocument(pdfStream);
+
+{% endhighlight %}
+{% endtabs %}
+
+The sample that illustrates loading a PDF from an URL can be downloaded from the link below,
+
+
+
+N> An Internet connection is necessary to get the stream from an URL. Please ensure that the device has a proper internet connection before running the sample application.
+
## Unloading PDF document from the Viewer
The Xamarin.Android PDF Viewer (SfPdfViewer) control allows you to unload the PDF document from the viewer, when the PDF document is not in use anymore. This releases the PDF document and all its associated resources of the application.