diff --git a/_includes/sidelist-programming/programming-react-native.html b/_includes/sidelist-programming/programming-react-native.html
index 28d39181..20705904 100644
--- a/_includes/sidelist-programming/programming-react-native.html
+++ b/_includes/sidelist-programming/programming-react-native.html
@@ -479,6 +479,7 @@
- AllModuleDeviation
- AustralianPostEncodingTable
+ - AutoDetectColorInversion
- BarcodeAngleRangeArray
- BarcodeBytesLengthRangeArray
- BarcodeFormatIds
diff --git a/programming/react-native/release-notes/index.md b/programming/react-native/release-notes/index.md
index 8208958d..7502bbc7 100644
--- a/programming/react-native/release-notes/index.md
+++ b/programming/react-native/release-notes/index.md
@@ -9,6 +9,7 @@ breadcrumbText: Release Notes
# Dynamsoft Barcode Reader React Native SDK - Release Notes
+- [11.6.2000 (08/25/2026)](react-native-11.md#1162000-08252026)
- [11.4.3010 (07/09/2026)](react-native-11.md#1143000-07082026)
- [11.4.1300 (05/20/2026)](react-native-11.md#1141300-05202026)
- [11.4.1200 (04/22/2026)](react-native-11.md#1141200-04222026)
diff --git a/programming/react-native/release-notes/react-native-11.md b/programming/react-native/release-notes/react-native-11.md
index 8c9041d2..525c98ec 100644
--- a/programming/react-native/release-notes/react-native-11.md
+++ b/programming/react-native/release-notes/react-native-11.md
@@ -9,6 +9,39 @@ breadcrumbText: Release Notes
# Dynamsoft Barcode Reader React Native SDK - Release Notes
+## 11.6.2000 (08/25/2026)
+
+### Highlights
+
+#### Multi-Threaded Barcode Decoding
+
+- **Get results sooner with parallel processing** - Barcode decoding now uses a breadth-first strategy that decomposes a single DBR Task into one Localization Work and one or more Decoding Works. This improves thread utilization and reduces the chance that a slow `DeblurMode` attempt blocks other faster decoding attempts, helping valid results come back sooner.
+
+#### DataMatrix Color Inversion Detection
+
+- **Handle normal and inverted DataMatrix more efficiently** - Added [`AutoDetectColorInversion`]({{ site.dcv_parameters_reference }}barcode-format-specification/auto-detect-color-inversion.html) to automatically handle both normal and inverted DataMatrix barcodes. Instead of processing the whole image twice, the SDK applies dual-polarity handling only to localized DataMatrix regions, which makes processing faster in dual-polarity scenarios.
+
+#### Cross-Version License Support
+
+- **Use a single license across SDK versions** - Full License 1.0 keys (starting with "f") that are non-perpetual are no longer version-checked, so the same key can be used across SDK versions without reactivation.
+
+### New
+
+- Added support for Micro PDF417-specific decoding mode.
+
+- Added [`AutoDetectColorInversion`]({{ site.dcv_parameters_reference }}barcode-format-specification/auto-detect-color-inversion.html) parameter for `BarcodeFormatSpecification` to support automatic color-inversion detection for DataMatrix barcodes.
+
+### Changed
+
+- [`MaxParallelTasks`]({{ site.dcv_parameters_reference }}capture-vision-template/max-parallel-tasks.html) now controls the total number of Work-level threads in the CVR thread pool. For DBR tasks, each Localization Work and Decoding Work occupies one thread slot. DLR and DDN tasks continue to occupy one thread per task.
+
+- [`set_device_friendly_name()`]({{ site.dcv_react_native_api }}license/license-manager.html#set_device_friendly_name) now enforces parameter constraints: maximum 64 characters, allowed characters are letters (a-z, A-Z), digits (0-9), hyphen (-), underscore (_), and period (.), and must start and end with a letter or digit. Returns [`EC_PARAMETER_VALUE_INVALID`]({{ site.dcv_react_native_api }}core/enum-error-code.html) if constraints are not met.
+
+### Fixed
+
+- Fixed an issue in GS1-Databar AI `17` (YYMMDD) results where the month field could be missing a leading zero.
+- Fixed several known crash issues.
+
## 11.4.3010 (07/09/2026)
### Security Updates
diff --git a/programming/react-native/samples/index.md b/programming/react-native/samples/index.md
index e1ec012e..797e3b2d 100644
--- a/programming/react-native/samples/index.md
+++ b/programming/react-native/samples/index.md
@@ -13,24 +13,60 @@ All of the samples that have been created for the Dynamsoft Barcode Reader React
## Barcode Reader Samples
+### ScanBarcodes_ReadyToUseComponent
+
+This sample demonstrates the quickest way to scan barcodes from live camera preview using the [BarcodeScanner (Ready-To-Use) API]({{ site.dbr_react_native_api }}barcode-scanner/index.html), with minimal configuration required.
+
+[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-react-native-samples/tree/main/ScanBarcodes_ReadyToUseComponent){:target="_blank"}
+
### ScanBarcodes_FoundationalAPI
-This is a sample that demonstrates the simplest implementation of the Barcode Reader to allow for barcode decoding via the camera using the [Foundational API]({{ site.dbr_react_native_api }}).
+This sample demonstrates how to scan barcodes from live camera preview using the [Foundational API]({{ site.dbr_react_native_api }}), providing full control over the camera, processing pipeline, and barcode results.
[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-react-native-samples/tree/main/ScanBarcodes_FoundationalAPI){:target="_blank"}
-### ScanBarcodes_ReadyToUseComponent
+### ScanBarcodes_Expo
-This is a sample that demonstrates the simplest implementation of the Barcode Reader to allow for barcode decoding via the camera using the [BarcodeScanner (Ready-To-Use) API]({{ site.dbr_react_native_api }}barcode-scanner/index.html).
+This sample demonstrates barcode scanning using the [Foundational API]({{ site.dbr_react_native_api }}) in an Expo (Bare) project, showing how to integrate Dynamsoft Barcode Reader into an Expo-based workflow.
-[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-react-native-samples/tree/main/ScanBarcodes_ReadyToUseComponent){:target="_blank"}
+[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-react-native-samples/tree/main/ScanBarcodes_Expo){:target="_blank"}
-### ScanDriverLicense
+### ScanDriversLicense
-This sample demonstrates the simplest implementation of the Barcode Reader for recognizing a PDF417 barcode from video streaming and extracting structured data from its encoded data.
+This sample demonstrates how to recognize and extract information from drivers' licenses in real-time video streaming.
[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-react-native-samples/tree/main/ScanDriversLicense){:target="_blank"}
+### ScanVIN
+
+This sample demonstrates how to recognize and extract information from VIN barcodes in real-time video streaming.
+
+[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-react-native-samples/tree/main/ScanVIN){:target="_blank"}
+
+### ScenarioOptimizedScanning
+
+This sample demonstrates how to optimize scanning performance for different barcode formats and scenarios by loading scenario-specific templates (1D Retail, 1D Industrial, QR Code, Data Matrix, Aztec, Dot Code, DPM, PDF417, and High-Density codes).
+
+[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-react-native-samples/tree/main/ScenarioOptimizedScanning){:target="_blank"}
+
+### BarcodeReaderSettings
+
+This sample demonstrates how to configure the barcode reading settings via the [Foundational API]({{ site.dbr_react_native_api }}), including barcode formats, expected barcode count, minimum result confidence, and timeout.
+
+[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-react-native-samples/tree/main/BarcodeReaderSettings){:target="_blank"}
+
+### LocateAnItemWithBarcode
+
+This sample demonstrates how to locate an item by scanning or entering its barcode ID, using visual guidance to help find the matching item in real-time video streaming.
+
+[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-react-native-samples/tree/main/LocateAnItemWithBarcode){:target="_blank"}
+
+### ReadGS1AI
+
+This sample demonstrates how to recognize and parse GS1 Application Identifiers (AIs) from barcodes, extracting and formatting fields such as dates and other AI data.
+
+[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-react-native-samples/tree/main/ReadGS1AI){:target="_blank"}
+
## Demos
If you would like to see the Barcode Reader in action before starting the development journey, we have a demo app available on both the App Store as well as the Google Play Store.