Skip to content

Commit

Permalink
Update pubspec.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Alejandro Maldonado committed Jan 28, 2025
1 parent 9bb825c commit b12eee2
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if (flutterVersionName == null) {

android {
namespace "com.example.veryfi_flutter_lens_demo"
compileSdkVersion flutter.compileSdkVersion
compileSdkVersion 34
ndkVersion flutter.ndkVersion

compileOptions {
Expand All @@ -47,7 +47,7 @@ android {
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion 23
targetSdkVersion flutter.targetSdkVersion
targetSdkVersion 34
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
Expand Down
6 changes: 3 additions & 3 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PODS:
- AWSS3 (2.33.8):
- AWSCore (= 2.33.8)
- Flutter (1.0.0)
- veryfi (2.0.12.13):
- veryfi (2.2.2.3):
- AWSS3
- Flutter

Expand All @@ -26,8 +26,8 @@ SPEC CHECKSUMS:
AWSCore: dfd3136979a57bba64f4771db2e59ed97adb0d3c
AWSS3: 4de5b953dbb7cdfe0e91fcdf09b6d531480b2f9a
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
veryfi: 7e41cbd6bfd02b4c3bbd63964224432e6bb88d1d
veryfi: bdb33b3c4d5c4c9e09ec0941a79bfece72aa2909

PODFILE CHECKSUM: 819463e6a0290f5a72f145ba7cde16e8b6ef0796

COCOAPODS: 1.14.2
COCOAPODS: 1.15.2
2 changes: 1 addition & 1 deletion ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = YES;
LastUpgradeCheck = 1430;
LastUpgradeCheck = 1510;
ORGANIZATIONNAME = "";
TargetAttributes = {
331C8080294A63A400263BE5 = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1430"
LastUpgradeVersion = "1510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
2 changes: 1 addition & 1 deletion ios/Runner/AppDelegate.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import UIKit
import Flutter

@UIApplicationMain
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
Expand Down
4 changes: 3 additions & 1 deletion lib/utils/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ class Utils {
'switchCameraIsOn': preferences['Switch Camera'],
'enableScreenshots': preferences['Enable Screenshots'],
'documentTypes': [documentTypeResult],
'defaultSelectedDocumentType': documentTypeResult
'defaultSelectedDocumentType': documentTypeResult,
'ignoreRemoteSettings': preferences['Ignore remote settings']
};
}

Expand All @@ -76,6 +77,7 @@ class Utils {
'Switch Camera': false,
'Enable Screenshots': true,
'Zoom': false,
'Ignore remote settings': true
};
}
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies:
veryfi:
git:
url: https://[USERNAME]:[PASSWORD]@repo.veryfi.com/shared/lens/flutter-plugin-veryfi-lens.git
ref: 1.5.66
ref: 1.5.67
lottie: ^2.7.0


Expand Down

0 comments on commit b12eee2

Please sign in to comment.