Skip to content

Commit 8f31529

Browse files
Dynamsoft-HenryAllen-Dynamsoft
authored andcommitted
Updated trial request descriptions (comments and readme)
1 parent cc0e78c commit 8f31529

File tree

19 files changed

+19
-19
lines changed

19 files changed

+19
-19
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The following samples aggregate multiple products under `DynamsoftCaptureVision`
6161
## License
6262

6363
- If you want to use an offline license, please contact [Dynamsoft Support](https://www.dynamsoft.com/company/contact/)
64-
- You can also request an extension for your trial license in the [customer portal](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github)
64+
- You can also request a 30-day trial license via the [Request a Trial License](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=mobile) link.
6565

6666
## Contact Us
6767

android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ protected void onCreate(Bundle savedInstanceState) {
2525
if (savedInstanceState == null) {
2626
// Initialize license for Dynamsoft Barcode Reader.
2727
// The LICENSE string is defined above. It is a time-limited trial license. Note that network connection is required for this license to work.
28-
// You can also request an extension for your trial license in the customer portal: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=installer&package=android
28+
// You can also request a 30-day trial license via the Request a Trial License link: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=android
2929
LicenseManager.initLicense(LICENSE, this, (isSuccess, error) -> {
3030
if (!isSuccess) {
3131
error.printStackTrace();

android/HelloWorld/DecodeFromAnImage/src/main/java/com/dynamsoft/dbr/decodefromanimage/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ protected void onCreate(Bundle savedInstanceState) {
4242
if (savedInstanceState == null) {
4343
// Initialize license for Dynamsoft Barcode Reader.
4444
// The license string here is a time-limited trial license. Note that network connection is required for this license to work.
45-
// You can also request an extension for your trial license in the customer portal: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=installer&package=android
45+
// You can also request a 30-day trial license via the Request a Trial License link: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=android
4646
LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", this, (isSuccess, error) -> {
4747
if (!isSuccess) {
4848
error.printStackTrace();

android/HelloWorld/DecodeFromAnImageKt/src/main/java/com/dynamsoft/decodefromanimagekt/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class MainActivity : AppCompatActivity() {
3333
if (savedInstanceState == null) {
3434
// Initialize license for Dynamsoft Barcode Reader.
3535
// The license string here is a time-limited trial license. Note that network connection is required for this license to work.
36-
// You can also request an extension for your trial license in the customer portal: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=installer&package=android
36+
// You can also request a 30-day trial license via the Request a Trial License link: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=android
3737
LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", this) { isSuccess, error ->
3838
if (!isSuccess) {
3939
error?.printStackTrace()

android/HelloWorld/DecodeWithCameraEnhancer/src/main/java/com/dynamsoft/dbr/decodewithcameraenhancer/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected void onCreate(Bundle savedInstanceState) {
3535
if (savedInstanceState == null) {
3636
// Initialize license for Dynamsoft Barcode Reader.
3737
// The license string here is a time-limited trial license. Note that network connection is required for this license to work.
38-
// You can also request an extension for your trial license in the customer portal: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=installer&package=android
38+
// You can also request a 30-day trial license via the Request a Trial License link: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=android
3939
LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", this, (isSuccess, error) -> {
4040
if (!isSuccess) {
4141
error.printStackTrace();

android/HelloWorld/DecodeWithCameraEnhancerKt/src/main/java/com/dynamsoft/decodewithcameraenhancerkt/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class MainActivity : AppCompatActivity() {
2929
if (savedInstanceState == null) {
3030
// Initialize license for Dynamsoft Barcode Reader.
3131
// The license string here is a time-limited trial license. Note that network connection is required for this license to work.
32-
// You can also request an extension for your trial license in the customer portal: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=installer&package=android
32+
// You can also request a 30-day trial license via the Request a Trial License link: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=android
3333
LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", this) { isSuccess, error ->
3434
if (!isSuccess) {
3535
error?.printStackTrace()

android/HelloWorld/DecodeWithCameraX/src/main/java/com/dynamsoft/dbr/decodewithcamerax/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ protected void onCreate(Bundle savedInstanceState) {
3434
if (savedInstanceState == null) {
3535
// Initialize license for Dynamsoft Barcode Reader.
3636
// The license string here is a time-limited trial license. Note that network connection is required for this license to work.
37-
// You can also request an extension for your trial license in the customer portal: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=installer&package=android
37+
// You can also request a 30-day trial license via the Request a Trial License link: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=android
3838
LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", this, (isSuccess, error) -> {
3939
if (!isSuccess) {
4040
error.printStackTrace();

android/HelloWorld/DecodeWithCameraXKt/src/main/java/com/dynamsoft/decodewithcameraxkt/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class MainActivity : AppCompatActivity() {
2626
if (savedInstanceState == null) {
2727
// Initialize license for Dynamsoft Barcode Reader.
2828
// The license string here is a time-limited trial license. Note that network connection is required for this license to work.
29-
// You can also request an extension for your trial license in the customer portal: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=installer&package=android
29+
// You can also request a 30-day trial license via the Request a Trial License link: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=android
3030
LicenseManager.initLicense(
3131
"DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", this
3232
) { isSuccess, error ->

android/PerformanceSettings/PerformanceSettings/src/main/java/com/dynamsoft/dbr/performancesettings/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ protected void onCreate(Bundle savedInstanceState) {
2323
.commit();
2424
// Initialize license for Dynamsoft Barcode Reader.
2525
// The LICENSE string is defined above. It is a time-limited trial license. Note that network connection is required for this license to work.
26-
// You can also request an extension for your trial license in the customer portal: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=installer&package=android
26+
// You can also request a 30-day trial license via the Request a Trial License link: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=android
2727
LicenseManager.initLicense(LICENSE, this, (isSuccess, error) -> {
2828
if (!isSuccess) {
2929
error.printStackTrace();

android/UseCase/TinyBarcodeDecoding/src/main/java/com/dynamsoft/dbr/tinybarcodedecoding/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ protected void onCreate(Bundle savedInstanceState) {
4242
if (savedInstanceState == null) {
4343
// Initialize license for Dynamsoft Barcode Reader.
4444
// The license string here is a time-limited trial license. Note that network connection is required for this license to work.
45-
// You can also request an extension for your trial license in the customer portal: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=installer&package=android
45+
// You can also request a 30-day trial license via the Request a Trial License link: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=android
4646
LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", this, (isSuccess, error) -> {
4747
if (!isSuccess) {
4848
error.printStackTrace();

0 commit comments

Comments
 (0)