@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.
package/android/build.gradle
CHANGED
|
@@ -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.
|
|
46
|
+
implementation 'com.identomat:identomat-sdk:1.1.107'
|
|
47
47
|
implementation 'androidx.fragment:fragment:1.1.0-alpha05'
|
|
48
48
|
}
|
package/ios/Identomat.swift
CHANGED
|
@@ -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 =
|
|
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 =
|
|
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
|
@@ -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 = { "
|
|
18
|
-
s.platforms = { :ios => "
|
|
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.
|
|
25
|
+
s.dependency "identomat-inc", "1.1.104"
|
|
26
26
|
end
|
|
27
27
|
|