Skip to content

Commit e416057

Browse files
Updated with SDK v3.1.10
Updated with SDK v3.1.10
1 parent 88dcdfb commit e416057

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

java_sample/.idea/misc.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

java_sample/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ android {
3030

3131
dependencies {
3232

33-
implementation 'androidx.appcompat:appcompat:1.6.1'
34-
implementation 'com.google.android.material:material:1.5.0'
35-
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
33+
implementation 'androidx.appcompat:appcompat:1.7.0-alpha03'
34+
implementation 'com.google.android.material:material:1.11.0-beta01'
35+
implementation 'androidx.constraintlayout:constraintlayout:2.2.0-alpha13'
3636
/*DEV_HELP : link the preferred SDK version from maven repo by extrieve.*/
37-
implementation 'com.extrieve.quickcapture:QCv3:3.1.7'
37+
implementation 'com.extrieve.quickcapture:QCv3:3.1.10'
3838
}

java_sample/app/src/main/java/com/extrieve/quickcapture/docappjava/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private void SetConfig() {
105105
//can set output file path
106106
Config.CaptureSupport.OutputPath = BuildStoragePath();
107107

108-
Config.CaptureSupport.DocumentCropping = Config.CaptureSupport.CroppingType.LiveDetection;
108+
Config.CaptureSupport.DocumentCropping = Config.CaptureSupport.CroppingType.AutoCrop;
109109

110110
Config.CaptureSupport.EnableFlash = true;
111111

kotlin_sample/.idea/gradle.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kotlin_sample/.idea/misc.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kotlin_sample/app/build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@ android {
3434

3535
dependencies {
3636

37-
implementation 'androidx.core:core-ktx:1.8.0'
38-
implementation 'androidx.appcompat:appcompat:1.6.1'
39-
implementation 'com.google.android.material:material:1.5.0'
40-
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
41-
implementation 'com.extrieve.quickcapture:QCv3:3.1.7'
37+
implementation 'androidx.core:core-ktx:1.12.0'
38+
implementation 'androidx.appcompat:appcompat:1.7.0-alpha03'
39+
implementation 'com.google.android.material:material:1.11.0-beta01'
40+
implementation 'androidx.constraintlayout:constraintlayout:2.2.0-alpha13'
41+
/*DEV_HELP : link the preferred SDK version from maven repo by extrieve.*/
42+
implementation 'com.extrieve.quickcapture:QCv3:3.1.10'
4243
}

kotlin_sample/app/src/main/java/com/extrieve/quickcapture/docappkotlin/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class MainActivity : AppCompatActivity() {
105105
//can set output file path
106106
Config.CaptureSupport.OutputPath = buildStoragePath()
107107

108-
Config.CaptureSupport.DocumentCropping = Config.CaptureSupport.CroppingType.LiveDetection
108+
Config.CaptureSupport.DocumentCropping = Config.CaptureSupport.CroppingType.AutoCapture
109109

110110
Config.CaptureSupport.EnableFlash = true
111111

0 commit comments

Comments
 (0)