@regulaforensics/face-sdk 7.2.467-rc → 7.2.469

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/RNFaceSDK.podspec +2 -2
  2. package/android/build.gradle +17 -5
  3. package/android/cordova.gradle +2 -2
  4. package/examples/capacitor/android/app/build.gradle +2 -2
  5. package/examples/capacitor/android/app/src/main/AndroidManifest.xml +2 -2
  6. package/examples/capacitor/android/app/src/main/java/com/regula/{example/face/capacitor → documentreader/api/androidtest}/MainActivity.java +1 -1
  7. package/examples/capacitor/android/app/src/main/res/values/strings.xml +7 -0
  8. package/examples/capacitor/android/variables.gradle +4 -4
  9. package/examples/capacitor/ios/App/App/Info.plist +1 -1
  10. package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +4 -4
  11. package/examples/capacitor/package-lock.json +3 -3
  12. package/examples/capacitor/package.json +2 -2
  13. package/examples/ionic/config.xml +5 -6
  14. package/examples/ionic/images/icon.png +0 -0
  15. package/examples/ionic/package-lock.json +6657 -7190
  16. package/examples/ionic/package.json +22 -22
  17. package/examples/ionic/scripts/android.sh +1 -1
  18. package/examples/ionic/scripts/ios.sh +1 -1
  19. package/examples/ionic/tsconfig.json +1 -2
  20. package/examples/react_native/app.config.ts +11 -5
  21. package/examples/react_native/images/icon/adaptive-icon.png +0 -0
  22. package/examples/react_native/images/icon/icon.png +0 -0
  23. package/examples/react_native/package-lock.json +1619 -931
  24. package/examples/react_native/package.json +14 -14
  25. package/examples/react_native/scripts/android.sh +0 -1
  26. package/examples/react_native/scripts/ios.sh +1 -2
  27. package/package.json +1 -1
  28. package/plugin.xml +2 -2
  29. package/test/package-lock.json +1 -1
  30. package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_foreground.png +0 -0
  31. package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_round.png +0 -0
  32. package/examples/capacitor/android/app/src/main/res/drawable/launcher.xml +0 -4
  33. package/examples/capacitor/android/app/src/main/res/drawable/launcher_round.xml +0 -4
  34. package/examples/react_native/images/icon.png +0 -0
package/RNFaceSDK.podspec CHANGED
@@ -5,7 +5,7 @@ source = File.join(__dir__, 'ios')
5
5
 
6
6
  Pod::Spec.new do |s|
7
7
  s.name = 'RNFaceSDK'
8
- s.version = '7.2.467-rc'
8
+ s.version = '7.2.469'
9
9
  s.summary = package['description']
10
10
  s.license = package['license']
11
11
 
@@ -16,6 +16,6 @@ Pod::Spec.new do |s|
16
16
  s.ios.deployment_target = '13.0'
17
17
  s.source_files = 'ios/**/*.{h,m}'
18
18
  s.exclude_files = [ 'ios/CVDFaceSDK.h', 'ios/CVDFaceSDK.m' ]
19
- s.dependency 'FaceSDKStage', '7.2.3128'
19
+ s.dependency 'FaceSDK', '7.2.3134'
20
20
  s.dependency 'React'
21
21
  end
@@ -1,3 +1,15 @@
1
+ buildscript {
2
+ repositories {
3
+ google()
4
+ mavenCentral()
5
+ }
6
+
7
+ dependencies {
8
+ classpath "com.android.tools.build:gradle:8.1.4"
9
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23"
10
+ }
11
+ }
12
+
1
13
  apply plugin: 'com.android.library'
2
14
  apply plugin: 'kotlin-android'
3
15
 
@@ -7,11 +19,11 @@ android {
7
19
  namespace 'com.regula.plugin.facesdk'
8
20
  }
9
21
 
10
- compileSdk 36
22
+ compileSdk 34
11
23
 
12
24
  defaultConfig {
13
- minSdkVersion 24
14
- targetSdk 36
25
+ minSdkVersion 21
26
+ targetSdk 34
15
27
  versionCode 1
16
28
  versionName "1.0"
17
29
  }
@@ -20,7 +32,7 @@ android {
20
32
  rootProject.allprojects {
21
33
  repositories {
22
34
  maven {
23
- url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
35
+ url "https://maven.regulaforensics.com/RegulaDocumentReader"
24
36
  }
25
37
  }
26
38
  }
@@ -29,7 +41,7 @@ dependencies {
29
41
  //noinspection GradleDynamicVersion
30
42
  implementation 'com.facebook.react:react-native:+'
31
43
  //noinspection GradleDependency
32
- implementation('com.regula.face:api:7.2.4015'){
44
+ implementation('com.regula.face:api:7.2.4026'){
33
45
  transitive = true
34
46
  }
35
47
  }
@@ -6,13 +6,13 @@ android {
6
6
 
7
7
  repositories {
8
8
  maven {
9
- url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
9
+ url "https://maven.regulaforensics.com/RegulaDocumentReader"
10
10
  }
11
11
  }
12
12
 
13
13
  dependencies {
14
14
  //noinspection GradleDependency
15
- implementation('com.regula.face:api:7.2.4015'){
15
+ implementation('com.regula.face:api:7.2.4026'){
16
16
  transitive = true
17
17
  }
18
18
  }
@@ -1,10 +1,10 @@
1
1
  apply plugin: 'com.android.application'
2
2
 
3
3
  android {
4
- namespace "com.regula.example.face.capacitor"
4
+ namespace "com.regula.documentreader.api.androidtest"
5
5
  compileSdkVersion rootProject.ext.compileSdkVersion
6
6
  defaultConfig {
7
- applicationId "com.regula.example.face.capacitor"
7
+ applicationId "com.regula.documentreader.api.androidtest"
8
8
  minSdkVersion rootProject.ext.minSdkVersion
9
9
  targetSdkVersion rootProject.ext.targetSdkVersion
10
10
  versionCode 1
@@ -2,8 +2,8 @@
2
2
 
3
3
  <application
4
4
  android:allowBackup="true"
5
- android:icon="@drawable/launcher"
6
- android:label="Face"
5
+ android:icon="@drawable/ic_launcher"
6
+ android:label="FaceSDK"
7
7
  android:supportsRtl="true"
8
8
  android:theme="@style/AppTheme"
9
9
  android:usesCleartextTraffic="true">
@@ -1,4 +1,4 @@
1
- package com.regula.example.face.capacitor;
1
+ package com.regula.documentreader.api.androidtest;
2
2
 
3
3
  import com.getcapacitor.BridgeActivity;
4
4
 
@@ -0,0 +1,7 @@
1
+ <?xml version='1.0' encoding='utf-8'?>
2
+ <resources>
3
+ <string name="app_name">FaceSDK</string>
4
+ <string name="title_activity_main">FaceSDK</string>
5
+ <string name="package_name">com.regula.documentreader.api.androidtest</string>
6
+ <string name="custom_url_scheme">com.regula.documentreader.api.androidtest</string>
7
+ </resources>
@@ -1,7 +1,7 @@
1
1
  ext {
2
- minSdkVersion = 26
3
- compileSdkVersion = 36
4
- targetSdkVersion = 36
2
+ minSdkVersion = 24
3
+ compileSdkVersion = 35
4
+ targetSdkVersion = 35
5
5
  androidxActivityVersion = '1.9.2'
6
6
  androidxAppCompatVersion = '1.7.0'
7
7
  androidxCoordinatorLayoutVersion = '1.2.0'
@@ -12,5 +12,5 @@ ext {
12
12
  junitVersion = '4.13.2'
13
13
  androidxJunitVersion = '1.2.1'
14
14
  androidxEspressoCoreVersion = '3.6.1'
15
- cordovaAndroidVersion = '14.0.0'
15
+ cordovaAndroidVersion = '13.0.0'
16
16
  }
@@ -5,7 +5,7 @@
5
5
  <key>CFBundleDevelopmentRegion</key>
6
6
  <string>en</string>
7
7
  <key>CFBundleDisplayName</key>
8
- <string>Face</string>
8
+ <string>FaceSDK</string>
9
9
  <key>CFBundleExecutable</key>
10
10
  <string>$(EXECUTABLE_NAME)</string>
11
11
  <key>CFBundleIdentifier</key>
@@ -351,11 +351,11 @@
351
351
  CODE_SIGN_STYLE = Automatic;
352
352
  CURRENT_PROJECT_VERSION = 1;
353
353
  INFOPLIST_FILE = App/Info.plist;
354
- IPHONEOS_DEPLOYMENT_TARGET = 15.6;
354
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
355
355
  LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
356
356
  MARKETING_VERSION = 1.0;
357
357
  OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
358
- PRODUCT_BUNDLE_IDENTIFIER = com.regula.example.face.capacitor;
358
+ PRODUCT_BUNDLE_IDENTIFIER = com.regula.documentreader.qa;
359
359
  PRODUCT_NAME = "$(TARGET_NAME)";
360
360
  SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
361
361
  SWIFT_VERSION = 5.0;
@@ -372,10 +372,10 @@
372
372
  CODE_SIGN_STYLE = Automatic;
373
373
  CURRENT_PROJECT_VERSION = 1;
374
374
  INFOPLIST_FILE = App/Info.plist;
375
- IPHONEOS_DEPLOYMENT_TARGET = 15.6;
375
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
376
376
  LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
377
377
  MARKETING_VERSION = 1.0;
378
- PRODUCT_BUNDLE_IDENTIFIER = com.regula.example.face.capacitor;
378
+ PRODUCT_BUNDLE_IDENTIFIER = com.regula.documentreader.qa;
379
379
  PRODUCT_NAME = "$(TARGET_NAME)";
380
380
  SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
381
381
  SWIFT_VERSION = 5.0;
@@ -3206,9 +3206,9 @@
3206
3206
  "license": "MIT"
3207
3207
  },
3208
3208
  "node_modules/vite": {
3209
- "version": "6.3.6",
3210
- "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.6.tgz",
3211
- "integrity": "sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==",
3209
+ "version": "6.3.5",
3210
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz",
3211
+ "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
3212
3212
  "license": "MIT",
3213
3213
  "peer": true,
3214
3214
  "dependencies": {
@@ -6,8 +6,8 @@
6
6
  "android": "scripts/android.sh"
7
7
  },
8
8
  "dependencies": {
9
- "@regulaforensics/face-sdk": "7.2.467-rc",
10
- "@regulaforensics/face-core-basic": "7.2.262-rc",
9
+ "@regulaforensics/face-sdk": "7.2.469",
10
+ "@regulaforensics/face-core-basic": "7.2.265",
11
11
  "@awesome-cordova-plugins/file": "6.6.0",
12
12
  "@awesome-cordova-plugins/camera": "6.6.0",
13
13
  "cordova-plugin-file": "8.1.3",
@@ -1,17 +1,16 @@
1
1
  <?xml version='1.0' encoding='utf-8'?>
2
- <widget android-packageName="com.regula.example.face.ionic" ios-CFBundleIdentifier="com.regula.example.face.ionic" version="1.0.0"
2
+ <widget android-packageName="com.regula.documentreader.api.androidtest" ios-CFBundleIdentifier="com.regula.documentreader.qa" version="1.0.0"
3
3
  xmlns:android="http://schemas.android.com/apk/res/android">
4
- <name>Face</name>
4
+ <name>FaceSDK</name>
5
5
  <icon src="images/icon.png" />
6
6
  <platform name="android">
7
7
  <preference name="orientation" value="portrait" />
8
- <preference name="AndroidEdgeToEdge" value="true" />
9
- <preference name="android-minSdkVersion" value="24" />
10
- <preference name="android-targetSdkVersion" value="36" />
11
- <preference name="GradlePluginKotlinEnabled" value="true" />
12
8
  <edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
13
9
  <application android:usesCleartextTraffic="true" />
14
10
  </edit-config>
11
+ <preference name="android-minSdkVersion" value="24" />
12
+ <preference name="android-targetSdkVersion" value="35" />
13
+ <preference name="GradlePluginKotlinEnabled" value="true" />
15
14
  </platform>
16
15
  <platform name="ios">
17
16
  <preference name="deployment-target" value="14.0" />
Binary file