Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
b0c2168
update to v7.0 pre-alpha
yurii-scanbot Apr 17, 2025
1130fe3
app bar refactoring and fixed apply filter issue on preview documents…
yurii-scanbot Apr 25, 2025
b816d01
update credit card scanner operations and gitignore
yurii-scanbot Apr 28, 2025
db327ef
update image recognizers use-cases with default configurations
yurii-scanbot Apr 29, 2025
37d89fd
add rtuui mrz/creditcard/textpattern snippets
yurii-scanbot May 7, 2025
fad7f90
update recognizers and usecase datacapture rtuui snippets
yurii-scanbot May 8, 2025
3880d8e
revert back pdf and tiff from image operations snippets
yurii-scanbot May 8, 2025
f291fd6
update the naming convention for datacapture RTU configurations
yurii-scanbot May 26, 2025
4bde83a
add datacapture and recognizers results preview
yurii-scanbot Jun 4, 2025
c4cbd12
data recognizers improvements and autorelease showcase for check and …
yurii-scanbot Jun 12, 2025
f6ce661
add alert for cleanStoredDocuments operation status
yurii-scanbot Jun 13, 2025
308b3f3
Updating some comments
markoScB Jun 13, 2025
a941524
Update Libraries.txt
markoScB Jun 13, 2025
2bc83a7
Merge pull request #109 from doo/yk/v7.0-data-capture-imorovements
yurii-scanbot Jun 16, 2025
e2679ad
update scanbot_sdk dependency
yurii-scanbot Jun 16, 2025
a7ee8f3
fixed imageEncoding showcase for DDE result
yurii-scanbot Jun 23, 2025
47ba756
allow UIViewControllerBasedStatusBarAppearance permission
yurii-scanbot Jun 23, 2025
7fc38f1
update to 7.0.0 alpha03
yurii-scanbot Jun 25, 2025
3ca1059
update to v7.0.0-alpha04
yurii-scanbot Jun 26, 2025
e2a9ffe
data capture snippets refactoring
yurii-scanbot Jun 27, 2025
cc5af2f
removing barcode use-cases from example with snippets
yurii-scanbot Jun 30, 2025
56abad2
update to stable 7.0.0 and remove legacy snippets, v1 ds scanner
yurii-scanbot Jun 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ ios/Flutter/Flutter.podspec
# Android related
**/android/**/gradle-wrapper.jar
**/android/.gradle
**/android/app/.cxx
**/android/captures/
**/android/gradlew
**/android/gradlew.bat
Expand Down
412 changes: 341 additions & 71 deletions Libraries.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

android {
namespace = "com.example.scanbot_sdk_example_flutter"
compileSdk = flutter.compileSdkVersion
compileSdk = 35

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
Expand Down
6 changes: 6 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
<!-- If you are targeting Android 13 (API level 33) or higher, add the following permission -->
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />

<queries>
<intent>
<action android:name="android.support.customtabs.action.CustomTabsService" />
</intent>
</queries>

<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
In most cases you can leave this as-is, but you if you want to provide
Expand Down
13 changes: 11 additions & 2 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@
TargetAttributes = {
97C146ED1CF9000F007C117D = {
CreatedOnToolsVersion = 7.3.1;
DevelopmentTeam = FRUPYT6KB3;
LastSwiftMigration = 0910;
};
};
Expand Down Expand Up @@ -260,16 +259,26 @@
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh",
"${BUILT_PRODUCTS_DIR}/DKImagePickerController/DKImagePickerController.framework",
"${BUILT_PRODUCTS_DIR}/DKPhotoGallery/DKPhotoGallery.framework",
"${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework",
"${BUILT_PRODUCTS_DIR}/SwiftyGif/SwiftyGif.framework",
"${BUILT_PRODUCTS_DIR}/file_picker/file_picker.framework",
"${BUILT_PRODUCTS_DIR}/image_picker_ios/image_picker_ios.framework",
"${BUILT_PRODUCTS_DIR}/path_provider_foundation/path_provider_foundation.framework",
"${BUILT_PRODUCTS_DIR}/scanbot_sdk/scanbot_sdk.framework",
"${BUILT_PRODUCTS_DIR}/shared_preferences_foundation/shared_preferences_foundation.framework",
"${BUILT_PRODUCTS_DIR}/url_launcher_ios/url_launcher_ios.framework",
"${PODS_XCFRAMEWORKS_BUILD_DIR}/ScanbotSDK/NONE/ScanbotSDK.framework/ScanbotSDK",
"${PODS_XCFRAMEWORKS_BUILD_DIR}/ScanbotSDKNativeWrapper/NONE/ScanbotSDKNativeWrapper.framework/ScanbotSDKNativeWrapper",
"${PODS_XCFRAMEWORKS_BUILD_DIR}/ScanbotSDKNativeWrapper/ScanbotSDKNativeWrapper.framework/ScanbotSDKNativeWrapper",
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DKImagePickerController.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DKPhotoGallery.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SwiftyGif.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/file_picker.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/image_picker_ios.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/path_provider_foundation.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/scanbot_sdk.framework",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
enableGPUValidationMode = "1"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
Expand Down
8 changes: 4 additions & 4 deletions ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,16 @@
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSCameraUsageDescription</key>
<string>Camera Permission</string>
<key>NFCReaderUsageDescription</key>
<string>NFC Scan Permission</string>
<key>NSCameraUsageDescription</key>
<string>Camera Permission</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>Photo Permission</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Photo Permission</string>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
<key>UIFileSharingEnabled</key>
<true/>
<key>UILaunchStoryboardName</key>
Expand All @@ -52,8 +54,6 @@
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
</dict>
</plist>
75 changes: 0 additions & 75 deletions lib/barcode/_legacy_barcode_use_cases.dart

This file was deleted.

97 changes: 0 additions & 97 deletions lib/barcode/barcode_sdk_menu.dart

This file was deleted.

90 changes: 0 additions & 90 deletions lib/barcode/barcode_use_cases.dart

This file was deleted.

Loading