Skip to content

Commit b4baa9e

Browse files
update to internal commit f5459b74
1 parent 95fae09 commit b4baa9e

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

license-activation/index.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ The following shows how to set the license in the code.
4242
>
4343
>
4444
```javascript
45-
Dynamsoft.DBR.BarcodeScanner.license = "YOUR-LICENSE-KEY";
46-
let scanner = await Dynamsoft.DBR.BarcodeScanner.createInstance();
45+
Dynamsoft.License.LicenseManager.initLicense("YOUR-LICENSE-KEY");
4746
```
4847
>
4948
```c
@@ -85,7 +84,7 @@ LicenseManager.initLicense("YOUR-LICENSE-KEY", this, (isSuccess, error) -> {
8584
```
8685
>
8786
```objc
88-
[DSLicenseManager initLicense:@"DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9" verificationDelegate:self];
87+
[DSLicenseManager initLicense:@"YOUR-LICENSE-KEY" verificationDelegate:self];
8988
- (void)onLicenseVerified:(BOOL)isSuccess error:(nullable NSError *)error {
9089
if (!isSuccess && error != nil) {
9190
NSLog(@"error: %@", error);
@@ -94,7 +93,7 @@ LicenseManager.initLicense("YOUR-LICENSE-KEY", this, (isSuccess, error) -> {
9493
```
9594
>
9695
```swift
97-
LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", verificationDelegate: self)
96+
LicenseManager.initLicense("YOUR-LICENSE-KEY", verificationDelegate: self)
9897
func onLicenseVerified(_ isSuccess: Bool, error: Error?) {
9998
if !isSuccess {
10099
if let error = error {

release-notes/dbr-rn-10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ noTitleIndex: true
2020

2121
| Versions | Available Editions |
2222
| -------- | ------------------ |
23-
| 10.2.10 | [C++]({{ site.cpp_release_notes}}cpp-10.html#10210-02292024){:target="_blank"} |
23+
| 10.2.10 | [C++]({{ site.cpp_release_notes}}cpp-10.html#10210-03012024){:target="_blank"} |
2424
| 10.2.0 | [C++]({{ site.cpp_release_notes}}cpp-10.html#1020-01162024){:target="_blank"} |
2525

2626
## 10.0

0 commit comments

Comments
 (0)