@identomat-inc/react-native-identomat 1.0.39 → 1.0.41

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.
@@ -43,6 +43,6 @@ dependencies {
43
43
  implementation 'androidx.legacy:legacy-support-v4:1.0.0'
44
44
  // implementation 'com.android.support:recyclerview-v7:28.0.0'
45
45
  implementation 'com.android.support:design:28.0.0'
46
- implementation 'com.identomat:identomat-sdk:1.1.99'
46
+ implementation 'com.identomat:identomat-sdk:1.1.107'
47
47
  implementation 'androidx.fragment:fragment:1.1.0-alpha05'
48
48
  }
@@ -3,7 +3,7 @@
3
3
  // Identomat
4
4
  //
5
5
  // Created by Oto Siradze on 2/10/21.
6
- // Copyright © 2021 Facebook. All rights reserved.
6
+ // Copyright © 2021 Identomat Inc. All rights reserved.
7
7
  //
8
8
 
9
9
  import Foundation
@@ -188,7 +188,7 @@
188
188
  GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
189
189
  GCC_WARN_UNUSED_FUNCTION = YES;
190
190
  GCC_WARN_UNUSED_VARIABLE = YES;
191
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
191
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
192
192
  LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
193
193
  LIBRARY_SEARCH_PATHS = (
194
194
  "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
@@ -240,7 +240,7 @@
240
240
  GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
241
241
  GCC_WARN_UNUSED_FUNCTION = YES;
242
242
  GCC_WARN_UNUSED_VARIABLE = YES;
243
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
243
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
244
244
  LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
245
245
  LIBRARY_SEARCH_PATHS = (
246
246
  "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@identomat-inc/react-native-identomat",
3
- "version": "1.0.39",
3
+ "version": "1.0.41",
4
4
  "description": "identomat bridge module",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -14,14 +14,14 @@ Pod::Spec.new do |s|
14
14
  s.license = "MIT"
15
15
  # optional - use expanded license entry instead:
16
16
  # s.license = { :type => "MIT", :file => "LICENSE" }
17
- s.authors = { "Your Name" => "yourname@email.com" }
18
- s.platforms = { :ios => "9.0" }
17
+ s.authors = { "Identomat Inc." => "info@identomat.com" }
18
+ s.platforms = { :ios => "13.0" }
19
19
  s.source = { :git => "https://giorgiberidze2501@bitbucket.org/raizomat/react-native-identomat.git", :tag => "#{s.version}" }
20
20
 
21
21
  s.source_files = "ios/**/*.{h,c,m,swift}"
22
22
  s.swift_version = "5"
23
23
  s.requires_arc = true
24
24
  s.dependency "React"
25
- s.dependency "identomat-inc", "1.1.89"
25
+ s.dependency "identomat-inc", "1.1.104"
26
26
  end
27
27