Skip to content

Commit e665589

Browse files
author
Jenkins
committed
7.2.540
1 parent cda5565 commit e665589

11 files changed

Lines changed: 23 additions & 57 deletions

File tree

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ apply plugin: 'kotlin-android'
1313

1414
android {
1515
namespace 'com.regula.plugin.facesdk'
16-
compileSdk 34
16+
compileSdk 36
1717

1818
defaultConfig {
19-
minSdk 21
19+
minSdk 24
2020
}
2121

2222
compileOptions {
@@ -28,7 +28,7 @@ android {
2828
}
2929

3030
dependencies {
31-
implementation('com.regula.face:api:7.2.4026') {
31+
implementation('com.regula.face:api:7.2.4155') {
3232
transitive = true
3333
}
3434

example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# How to build the demo application
22

33
1. Download or the clone current repository using the command `git clone https://github.com/regulaforensics/flutter_face_api.git.git`.
4-
2. Execute `flutter pub get` within this directory.
4+
2. Execute `flutter pub get && (cd ios && pod install || pod update)` within this directory.
55
3. Run the app: `flutter run`.
66

77
# How to use offline match

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
android {
8-
namespace = "com.regula.documentreader.api.androidtest"
8+
namespace = "com.regula.example.face.flutter"
99
compileSdk = flutter.compileSdkVersion
1010
ndkVersion = "27.0.12077973"
1111

@@ -15,7 +15,7 @@ android {
1515
}
1616

1717
defaultConfig {
18-
applicationId = "com.regula.documentreader.api.androidtest"
18+
applicationId = "com.regula.example.face.flutter"
1919
minSdk = flutter.minSdkVersion
2020
targetSdk = flutter.targetSdkVersion
2121
versionCode = flutter.versionCode

example/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<uses-permission android:name="android.permission.INTERNET" />
55
<application
6-
android:label="FaceSDK"
6+
android:label="Face"
77
android:name="${applicationName}"
88
android:icon="@mipmap/ic_launcher"
99
android:usesCleartextTraffic="true"

example/android/app/src/main/kotlin/com/regula/documentreader/api/androidtest/MainActivity.kt renamed to example/android/app/src/main/kotlin/com/regula/example/face/flutter/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.regula.documentreader.api.androidtest
1+
package com.regula.example.face.flutter
22

33
import io.flutter.embedding.android.FlutterActivity
44

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -373,11 +373,12 @@
373373
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
374374
ENABLE_BITCODE = NO;
375375
INFOPLIST_FILE = Runner/Info.plist;
376+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
376377
LD_RUNPATH_SEARCH_PATHS = (
377378
"$(inherited)",
378379
"@executable_path/Frameworks",
379380
);
380-
PRODUCT_BUNDLE_IDENTIFIER = com.regula.documentreader.qa;
381+
PRODUCT_BUNDLE_IDENTIFIER = com.regula.example.face.flutter;
381382
PRODUCT_NAME = "$(TARGET_NAME)";
382383
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
383384
SWIFT_VERSION = 5.0;
@@ -553,11 +554,12 @@
553554
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
554555
ENABLE_BITCODE = NO;
555556
INFOPLIST_FILE = Runner/Info.plist;
557+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
556558
LD_RUNPATH_SEARCH_PATHS = (
557559
"$(inherited)",
558560
"@executable_path/Frameworks",
559561
);
560-
PRODUCT_BUNDLE_IDENTIFIER = com.regula.documentreader.qa;
562+
PRODUCT_BUNDLE_IDENTIFIER = com.regula.example.face.flutter;
561563
PRODUCT_NAME = "$(TARGET_NAME)";
562564
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
563565
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -576,11 +578,12 @@
576578
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
577579
ENABLE_BITCODE = NO;
578580
INFOPLIST_FILE = Runner/Info.plist;
581+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
579582
LD_RUNPATH_SEARCH_PATHS = (
580583
"$(inherited)",
581584
"@executable_path/Frameworks",
582585
);
583-
PRODUCT_BUNDLE_IDENTIFIER = com.regula.documentreader.qa;
586+
PRODUCT_BUNDLE_IDENTIFIER = com.regula.example.face.flutter;
584587
PRODUCT_NAME = "$(TARGET_NAME)";
585588
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
586589
SWIFT_VERSION = 5.0;

example/ios/Runner/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<key>CFBundleDevelopmentRegion</key>
88
<string>$(DEVELOPMENT_LANGUAGE)</string>
99
<key>CFBundleDisplayName</key>
10-
<string>FaceSDK</string>
10+
<string>Face</string>
1111
<key>CFBundleExecutable</key>
1212
<string>$(EXECUTABLE_NAME)</string>
1313
<key>CFBundleIdentifier</key>

ios/.gitignore

Lines changed: 0 additions & 37 deletions
This file was deleted.

ios/flutter_face_api.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'flutter_face_api'
3-
s.version = '7.2.407'
3+
s.version = '7.2.540'
44
s.summary = 'A new flutter plugin project.'
55
s.description = <<-DESC
66
A new flutter plugin project.
@@ -12,7 +12,7 @@ A new flutter plugin project.
1212
s.source_files = 'Classes/**/*'
1313
s.public_header_files = 'Classes/**/*.h'
1414
s.dependency 'Flutter'
15-
s.platform = :ios, '12.0'
16-
s.dependency 'FaceSDK', '7.2.3134'
15+
s.platform = :ios, '13.0'
16+
s.dependency 'FaceSDK', '7.2.3306'
1717
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
1818
end

pubspec.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ packages:
111111
dependency: "direct dev"
112112
description:
113113
name: meta
114-
sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c
114+
sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
115115
url: "https://pub.dev"
116116
source: hosted
117-
version: "1.16.0"
117+
version: "1.17.0"
118118
path:
119119
dependency: transitive
120120
description:
@@ -172,10 +172,10 @@ packages:
172172
dependency: transitive
173173
description:
174174
name: test_api
175-
sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
175+
sha256: ab2726c1a94d3176a45960b6234466ec367179b87dd74f1611adb1f3b5fb9d55
176176
url: "https://pub.dev"
177177
source: hosted
178-
version: "0.7.6"
178+
version: "0.7.7"
179179
vector_math:
180180
dependency: transitive
181181
description:

0 commit comments

Comments
 (0)