facia-mobilesdk 0.2.8 → 0.2.9

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.
package/README.md CHANGED
@@ -1,2 +1,2 @@
1
- # Facia React Native SDK
1
+ # Facia Document Liveness React Native SDK
2
2
 
@@ -73,7 +73,7 @@ repositories {
73
73
  dependencies {
74
74
  //noinspection GradleDynamicVersion
75
75
  implementation 'com.facebook.react:react-native:+'
76
- implementation 'com.github.FaciaSDK:android-uqood:1.0.3' // From node_modules
76
+ implementation 'com.github.FaciaMobile:android-document-liveness:+' // From node_modules
77
77
  }
78
78
 
79
79
  def configureReactNativePom(def pom) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "facia-mobilesdk",
3
3
  "title": "React Native Mobilesdk Module",
4
- "version": "0.2.8",
4
+ "version": "0.2.9",
5
5
  "description": "Facia mobile SDK",
6
6
  "main": "index.js",
7
7
  "files": [
@@ -1,22 +0,0 @@
1
- require "json"
2
-
3
- package = JSON.parse(File.read(File.join(__dir__, "package.json")))
4
- sdk_version = "1.0.4"
5
-
6
- Pod::Spec.new do |s|
7
- s.name = "facia-mobilesdk"
8
- s.version = package["version"]
9
- s.summary = package["title"]
10
- s.description = package["description"]
11
- s.homepage = "https://facia.ai"
12
- s.license = "MIT"
13
- s.authors = { "facia" => "support@facia.ai" }
14
- s.platforms = { :ios => "11.0" }
15
- s.source = { :git => "https://github.com/FaciaSDK/iOS-Uqood.git"}
16
-
17
- s.source_files = "ios/**/*.{h,c,m,swift}"
18
- s.requires_arc = true
19
-
20
- s.dependency "React-Core"
21
- s.dependency "Facia", "=" + sdk_version
22
- end