Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

# 54.6.0
# 54.8.0

Please find the complete and updated release notes at https://documentation.anyline.com/flutter-plugin-component/latest/release-notes.html.

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version '1.0'

buildscript {
ext {
anyline_sdk_version = "54.6.0"
anyline_sdk_version = '54.8.0'
kotlin_version = "1.8.0"
}
repositories {
Expand Down
8 changes: 7 additions & 1 deletion example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,10 @@ If you want to just get the plugin working as quickly as possible, see the examp

## Getting Started

This project includes an Anyline Flutter Demo App with configurations for 22+ use cases. You can use the app code located in the [`main.dart`](https://github.com/Anyline/anyline-ocr-flutter-module/blob/main/example/lib/main.dart) file as orientation for your own implementation, but we strongly advise against using the same result processing approach as we did in our demo app. The reason why we only used `Map<String,dynamic>` and not custom model classes for storing results and therefore went without Dart typesafety is because for our purpose of only displaying results this was not really necessary. Creating classes for every single use would have been an overkill for this project, but we strongly encourage you to read our [Anyline Flutter Guide on documentation.anyline.com](https://documentation.anyline.com/flutter-plugin-component/latest/getting-started.html), where we go into detail about result processing and the form of all different possible results.
This project includes an Anyline Flutter Demo App with configurations for 22+ use cases. You can use the app code located in the [`main.dart`](https://github.com/Anyline/anyline-ocr-flutter-module/blob/main/example/lib/main.dart) file as orientation for your own implementation, but we strongly advise against using the same result processing approach as we did in our demo app. The reason why we only used `Map<String,dynamic>` and not custom model classes for storing results and therefore went without Dart typesafety is because for our purpose of only displaying results this was not really necessary. Creating classes for every single use would have been an overkill for this project, but we strongly encourage you to read our [Anyline Flutter Guide on documentation.anyline.com](https://documentation.anyline.com/flutter-plugin-component/latest/getting-started.html), where we go into detail about result processing and the form of all different possible results.

## Create .env file

- Navigate to path_to_plugin_root_folder/example
- Create .env file and add below line of code
> licenseKey="{REPLACE WITH YOUR LICENSE KEY}"
10 changes: 5 additions & 5 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- Anyline (54.6.0)
- anyline_plugin (54.6.0):
- Anyline (= 54.6.0)
- Anyline (54.8.0)
- anyline_plugin (54.8.0):
- Anyline (= 54.8.0)
- Flutter
- Flutter (1.0.0)
- path_provider_foundation (0.0.1):
Expand Down Expand Up @@ -32,8 +32,8 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/shared_preferences_foundation/darwin"

SPEC CHECKSUMS:
Anyline: 85244efae0420106133fe8e69a35bf642804e0e4
anyline_plugin: f3eeb8fe9901d09a851107644f7989eaa77039c5
Anyline: 19b3fda1cff0c65f74af496b49fa0e9a51120492
anyline_plugin: 1e5e4e69536ff7f6f798a9faa62389731a4bd165
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
path: ".."
relative: true
source: path
version: "54.6.0"
version: "54.8.0"
async:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: anyline_plugin_example
description: Demonstrates how to use the anyline_plugin plugin.
version: 54.6.0
version: 54.8.0

# The following line prevents the package from being accidentally published to
# pub.dev using `pub publish`. This is preferred for private packages.
Expand Down
4 changes: 2 additions & 2 deletions ios/anyline_plugin.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'anyline_plugin'
s.version = '54.6.0'
s.version = '54.8.0'
s.summary = 'Anyline SDK'
s.description = <<-DESC
Anyline OCR Module
Expand All @@ -16,7 +16,7 @@ Anyline OCR Module
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'Anyline', '54.6.0'
s.dependency 'Anyline', '54.8.0'
s.static_framework = true
s.platform = :ios, '12.0'
s.ios.deployment_target = '12.0'
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: anyline_plugin
description: Flutter Plugin for Anyline OCR, which allows you to scan all kinds of numbers, characters, text and codes.
version: 54.6.0
version: 54.8.0
homepage: https://anyline.com
repository: https://github.com/Anyline/anyline-ocr-flutter-module
documentation: https://documentation.anyline.com
Expand Down Expand Up @@ -54,7 +54,7 @@ flutter:
# example:
# fonts:
# - family: Schyler
# fonts:
# fonts:̊
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
Expand Down