Skip to content

Commit 5b22158

Browse files
authored
Merge pull request #246 from Dynamsoft/_dev
update public trial
2 parents 6ad8865 + bf06261 commit 5b22158

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

barcode-scanner-api-samples/scan-multiple-barcodes/cart-builder.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ <h2>Simulated Shopping Cart</h2>
121121
// Create a new instance of Dynamsoft BarcodeScanner with configuration options
122122
const scanner = new Dynamsoft.BarcodeScanner({
123123
// License key for Dynamsoft Barcode Reader (replace with a valid key)
124-
license: "YOUR-LICENSE-KEY",
124+
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9",
125125

126126
// Specify the path to the engine resources (loaded from CDN in this case)
127127
engineResourcePaths: {

barcode-scanner-api-samples/scan-multiple-barcodes/hello-world.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ <h1 class="barcode-scanner-title">
5656
// Configuration object for initializing the BarcodeScanner instance. Refer to https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/barcode-scanner.html#barcodescannerconfig
5757
let config = {
5858
// Replace with your Dynamsoft license key
59-
license: "YOUR-LICENSE-KEY",
59+
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9",
6060

6161
// Specify where to render the scanner UI
6262
container: ".barcode-scanner-view",

barcode-scanner-api-samples/scan-single-barcode/angular/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class AppComponent {
1313
async ngAfterViewInit(): Promise<void> {
1414
// Configuration object for initializing the BarcodeScanner instance
1515
const config = {
16-
license: "YOUR-LICENSE-KEY", // Replace with your Dynamsoft license key
16+
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", // Replace with your Dynamsoft license key
1717
container: ".barcode-scanner-view", // Specify where to render the scanner UI
1818

1919
// Specify the path for the definition file "barcode-scanner.ui.xml" for the scanner view.

barcode-scanner-api-samples/scan-single-barcode/hello-world.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ <h1 class="barcode-scanner-title">
5656
<script>
5757
// Configuration object for initializing the BarcodeScanner instance. Refer to https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/barcode-scanner.html#barcodescannerconfig
5858
let config = {
59-
license: "YOUR-LICENSE-KEY", // Replace with your Dynamsoft license key
59+
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", // Replace with your Dynamsoft license key
6060
container: ".barcode-scanner-view", // Specify where to render the scanner UI
6161
};
6262

barcode-scanner-api-samples/scan-single-barcode/react/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function App() {
77
useEffect(() => {
88
// Configuration object for initializing the BarcodeScanner instance
99
const config = {
10-
license: "YOUR-LICENSE-KEY", // Replace with your Dynamsoft license key
10+
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", // Replace with your Dynamsoft license key
1111
container: ".barcode-scanner-view", // Specify where to render the scanner UI
1212

1313
// Specify the path for the definition file "barcode-scanner.ui.xml" for the scanner view.

barcode-scanner-api-samples/scan-single-barcode/vue/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import vueLogo from "./assets/vue.svg";
66
onMounted(() => {
77
// Configuration object for initializing the BarcodeScanner instance
88
const config = {
9-
license: "YOUR-LICENSE-KEY", // Replace with your Dynamsoft license key
9+
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", // Replace with your Dynamsoft license key
1010
container: ".barcode-scanner-view", // Specify where to render the scanner UI
1111
1212
// Specify the path for the definition file "barcode-scanner.ui.xml" for the scanner view.

0 commit comments

Comments
 (0)