From e86d506e93e6508c230da87f5bca9d697dcc934a Mon Sep 17 00:00:00 2001 From: maulik-cn Date: Tue, 12 May 2026 16:29:31 +0530 Subject: [PATCH 1/2] Add licensing information to README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 1479beb..9ef2191 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,19 @@ The SciChart Android Examples suite contain developer example code in Java to he ![SciChart Android Examples Suite](https://www.scichart.com/wp-content/uploads/2020/02/android-main-page-examples-min-1.png) +### SciChart Licensing +To run the SciChart Android examples or use SciChart in your own applications, you need to set a runtime license key. You can obtain a license key by following the instructions in our [SciChart Android Licensing ](https://www.scichart.com/licensing-scichart-android/) documentation. + +Once you have your license key, you should set it in your `Application` class before any SciChart surfaces are created. For example, in `SciChartApp.java`: + +```java +try { + com.scichart.charting.visuals.SciChartSurface.setRuntimeLicenseKey("YOUR_RUNTIME_LICENSE_KEY"); +} catch (Exception e) { + Log.e("SciChart", "Error when setting the license", e); +} +``` + Chart types include: * [Android Line Chart](https://www.scichart.com/android-line-chart-example/) * [Android Band Chart](https://www.scichart.com/android-chart-example-band-series-chart/) From 043b33e7c9d8ee9630edc5f1c6a628a3059c90ca Mon Sep 17 00:00:00 2001 From: maulik-cn Date: Tue, 12 May 2026 16:34:06 +0530 Subject: [PATCH 2/2] Update licensing information in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ef2191..6f9f7cc 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ The SciChart Android Examples suite contain developer example code in Java to he ![SciChart Android Examples Suite](https://www.scichart.com/wp-content/uploads/2020/02/android-main-page-examples-min-1.png) ### SciChart Licensing -To run the SciChart Android examples or use SciChart in your own applications, you need to set a runtime license key. You can obtain a license key by following the instructions in our [SciChart Android Licensing ](https://www.scichart.com/licensing-scichart-android/) documentation. +To use SciChart in your own applications, you need to set a runtime license key. You can obtain a license key by following the instructions in our [SciChart Android Licensing ](https://www.scichart.com/licensing-scichart-android/) documentation. Once you have your license key, you should set it in your `Application` class before any SciChart surfaces are created. For example, in `SciChartApp.java`: