Commit 1e7131b3 authored by Javokhir's avatar Javokhir
Browse files

2.2.5

parent 34e85381
No preview for this file type
Pod::Spec.new do |spec|
spec.name = "MyIdSDK"
spec.version = "2.2.4"
spec.version = "2.2.5"
spec.platform = :ios, '11.0'
spec.ios.deployment_target = '11.0'
spec.summary = "MyID Framework"
......
......@@ -286,7 +286,6 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
SWIFT_CLASS("_TtC7MyIdSDK14MyIdAppearance")
@interface MyIdAppearance : NSObject
@property (nonatomic, strong) UIColor * _Nullable primaryColor;
@property (nonatomic, strong) UIColor * _Nullable secondaryColor;
@property (nonatomic, strong) UIColor * _Nullable errorColor;
@property (nonatomic, strong) UIColor * _Nullable primaryButtonColor;
@property (nonatomic, strong) UIColor * _Nullable primaryButtonColorDisabled;
......@@ -301,6 +300,11 @@ typedef SWIFT_ENUM(NSInteger, MyIdBuildMode, open) {
MyIdBuildModePRODUCTION = 1,
};
typedef SWIFT_ENUM(NSInteger, MyIdCameraSelector, open) {
MyIdCameraSelectorFRONT = 0,
MyIdCameraSelectorBACK = 1,
};
typedef SWIFT_ENUM(NSInteger, MyIdCameraShape, open) {
MyIdCameraShapeELLIPSE = 0,
MyIdCameraShapeCIRCLE = 1,
......@@ -308,10 +312,12 @@ typedef SWIFT_ENUM(NSInteger, MyIdCameraShape, open) {
@class MyIdConfig;
@protocol MyIdClientDelegate;
@class UIViewController;
SWIFT_CLASS("_TtC7MyIdSDK10MyIdClient")
@interface MyIdClient : NSObject
+ (void)startWithConfig:(MyIdConfig * _Nonnull)config withDelegate:(id <MyIdClientDelegate> _Nonnull)delegate;
+ (UIViewController * _Nonnull)runWithConfig:(MyIdConfig * _Nonnull)config withDelegate:(id <MyIdClientDelegate> _Nonnull)delegate SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
......@@ -330,6 +336,7 @@ enum MyIdEntryType : NSInteger;
enum MyIdResidency : NSInteger;
enum MyIdLocale : NSInteger;
enum MyIdResolution : NSInteger;
enum MyIdPresentationStyle : NSInteger;
@class MyIdOrganizationDetails;
SWIFT_CLASS("_TtC7MyIdSDK10MyIdConfig")
......@@ -339,6 +346,7 @@ SWIFT_CLASS("_TtC7MyIdSDK10MyIdConfig")
@property (nonatomic, copy) NSString * _Nullable clientHashId;
@property (nonatomic, copy) NSString * _Nullable passportData;
@property (nonatomic, copy) NSString * _Nullable dateOfBirth;
@property (nonatomic) NSInteger minAge;
@property (nonatomic, copy) NSString * _Nullable sdkHash;
@property (nonatomic, copy) NSString * _Nullable externalId;
@property (nonatomic) float threshold;
......@@ -348,6 +356,8 @@ SWIFT_CLASS("_TtC7MyIdSDK10MyIdConfig")
@property (nonatomic) enum MyIdLocale locale;
@property (nonatomic) enum MyIdCameraShape cameraShape;
@property (nonatomic) enum MyIdResolution resolution;
@property (nonatomic) enum MyIdCameraSelector cameraSelector;
@property (nonatomic) enum MyIdPresentationStyle presentationStyle;
@property (nonatomic, strong) MyIdOrganizationDetails * _Nullable organizationDetails;
@property (nonatomic, strong) MyIdAppearance * _Nullable appearance;
@property (nonatomic) BOOL withPhoto;
......@@ -403,6 +413,11 @@ SWIFT_CLASS("_TtC7MyIdSDK23MyIdOrganizationDetails")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
typedef SWIFT_ENUM(NSInteger, MyIdPresentationStyle, open) {
MyIdPresentationStyleFULL = 0,
MyIdPresentationStyleSHEET = 1,
};
typedef SWIFT_ENUM(NSInteger, MyIdResidency, open) {
MyIdResidencyUSER_DEFINED = 0,
MyIdResidencyRESIDENT = 1,
......@@ -424,13 +439,22 @@ SWIFT_CLASS("_TtC7MyIdSDK10MyIdResult")
@end
SWIFT_CLASS("_TtC7MyIdSDK13RSAKeyFactory")
@interface RSAKeyFactory : NSObject
SWIFT_CLASS("_TtC7MyIdSDK13MyIdViewModel") SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface MyIdViewModel : NSObject
- (void)startMyIdWithClientId:(NSString * _Nonnull)clientId clientHash:(NSString * _Nonnull)clientHash clientHashId:(NSString * _Nonnull)clientHashId passportData:(NSString * _Nullable)passportData dateOfBirth:(NSString * _Nullable)dateOfBirth minAge:(NSInteger)minAge sdkHash:(NSString * _Nullable)sdkHash externalId:(NSString * _Nullable)externalId threshold:(float)threshold buildMode:(enum MyIdBuildMode)buildMode entryType:(enum MyIdEntryType)entryType residency:(enum MyIdResidency)residency locale:(enum MyIdLocale)locale cameraShape:(enum MyIdCameraShape)cameraShape resolution:(enum MyIdResolution)resolution cameraSelector:(enum MyIdCameraSelector)cameraSelector presentationStyle:(enum MyIdPresentationStyle)presentationStyle organizationDetails:(MyIdOrganizationDetails * _Nullable)organizationDetails appearance:(MyIdAppearance * _Nullable)appearance withPhoto:(BOOL)withPhoto;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface MyIdViewModel (SWIFT_EXTENSION(MyIdSDK)) <MyIdClientDelegate>
- (void)onSuccessWithResult:(MyIdResult * _Nonnull)result;
- (void)onErrorWithException:(MyIdException * _Nonnull)exception;
- (void)onUserExited;
@end
#endif
......
......@@ -286,7 +286,6 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
SWIFT_CLASS("_TtC7MyIdSDK14MyIdAppearance")
@interface MyIdAppearance : NSObject
@property (nonatomic, strong) UIColor * _Nullable primaryColor;
@property (nonatomic, strong) UIColor * _Nullable secondaryColor;
@property (nonatomic, strong) UIColor * _Nullable errorColor;
@property (nonatomic, strong) UIColor * _Nullable primaryButtonColor;
@property (nonatomic, strong) UIColor * _Nullable primaryButtonColorDisabled;
......@@ -301,6 +300,11 @@ typedef SWIFT_ENUM(NSInteger, MyIdBuildMode, open) {
MyIdBuildModePRODUCTION = 1,
};
typedef SWIFT_ENUM(NSInteger, MyIdCameraSelector, open) {
MyIdCameraSelectorFRONT = 0,
MyIdCameraSelectorBACK = 1,
};
typedef SWIFT_ENUM(NSInteger, MyIdCameraShape, open) {
MyIdCameraShapeELLIPSE = 0,
MyIdCameraShapeCIRCLE = 1,
......@@ -308,10 +312,12 @@ typedef SWIFT_ENUM(NSInteger, MyIdCameraShape, open) {
@class MyIdConfig;
@protocol MyIdClientDelegate;
@class UIViewController;
SWIFT_CLASS("_TtC7MyIdSDK10MyIdClient")
@interface MyIdClient : NSObject
+ (void)startWithConfig:(MyIdConfig * _Nonnull)config withDelegate:(id <MyIdClientDelegate> _Nonnull)delegate;
+ (UIViewController * _Nonnull)runWithConfig:(MyIdConfig * _Nonnull)config withDelegate:(id <MyIdClientDelegate> _Nonnull)delegate SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
......@@ -330,6 +336,7 @@ enum MyIdEntryType : NSInteger;
enum MyIdResidency : NSInteger;
enum MyIdLocale : NSInteger;
enum MyIdResolution : NSInteger;
enum MyIdPresentationStyle : NSInteger;
@class MyIdOrganizationDetails;
SWIFT_CLASS("_TtC7MyIdSDK10MyIdConfig")
......@@ -339,6 +346,7 @@ SWIFT_CLASS("_TtC7MyIdSDK10MyIdConfig")
@property (nonatomic, copy) NSString * _Nullable clientHashId;
@property (nonatomic, copy) NSString * _Nullable passportData;
@property (nonatomic, copy) NSString * _Nullable dateOfBirth;
@property (nonatomic) NSInteger minAge;
@property (nonatomic, copy) NSString * _Nullable sdkHash;
@property (nonatomic, copy) NSString * _Nullable externalId;
@property (nonatomic) float threshold;
......@@ -348,6 +356,8 @@ SWIFT_CLASS("_TtC7MyIdSDK10MyIdConfig")
@property (nonatomic) enum MyIdLocale locale;
@property (nonatomic) enum MyIdCameraShape cameraShape;
@property (nonatomic) enum MyIdResolution resolution;
@property (nonatomic) enum MyIdCameraSelector cameraSelector;
@property (nonatomic) enum MyIdPresentationStyle presentationStyle;
@property (nonatomic, strong) MyIdOrganizationDetails * _Nullable organizationDetails;
@property (nonatomic, strong) MyIdAppearance * _Nullable appearance;
@property (nonatomic) BOOL withPhoto;
......@@ -403,6 +413,11 @@ SWIFT_CLASS("_TtC7MyIdSDK23MyIdOrganizationDetails")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
typedef SWIFT_ENUM(NSInteger, MyIdPresentationStyle, open) {
MyIdPresentationStyleFULL = 0,
MyIdPresentationStyleSHEET = 1,
};
typedef SWIFT_ENUM(NSInteger, MyIdResidency, open) {
MyIdResidencyUSER_DEFINED = 0,
MyIdResidencyRESIDENT = 1,
......@@ -424,13 +439,22 @@ SWIFT_CLASS("_TtC7MyIdSDK10MyIdResult")
@end
SWIFT_CLASS("_TtC7MyIdSDK13RSAKeyFactory")
@interface RSAKeyFactory : NSObject
SWIFT_CLASS("_TtC7MyIdSDK13MyIdViewModel") SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface MyIdViewModel : NSObject
- (void)startMyIdWithClientId:(NSString * _Nonnull)clientId clientHash:(NSString * _Nonnull)clientHash clientHashId:(NSString * _Nonnull)clientHashId passportData:(NSString * _Nullable)passportData dateOfBirth:(NSString * _Nullable)dateOfBirth minAge:(NSInteger)minAge sdkHash:(NSString * _Nullable)sdkHash externalId:(NSString * _Nullable)externalId threshold:(float)threshold buildMode:(enum MyIdBuildMode)buildMode entryType:(enum MyIdEntryType)entryType residency:(enum MyIdResidency)residency locale:(enum MyIdLocale)locale cameraShape:(enum MyIdCameraShape)cameraShape resolution:(enum MyIdResolution)resolution cameraSelector:(enum MyIdCameraSelector)cameraSelector presentationStyle:(enum MyIdPresentationStyle)presentationStyle organizationDetails:(MyIdOrganizationDetails * _Nullable)organizationDetails appearance:(MyIdAppearance * _Nullable)appearance withPhoto:(BOOL)withPhoto;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface MyIdViewModel (SWIFT_EXTENSION(MyIdSDK)) <MyIdClientDelegate>
- (void)onSuccessWithResult:(MyIdResult * _Nonnull)result;
- (void)onErrorWithException:(MyIdException * _Nonnull)exception;
- (void)onUserExited;
@end
#endif
......@@ -729,7 +753,6 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
SWIFT_CLASS("_TtC7MyIdSDK14MyIdAppearance")
@interface MyIdAppearance : NSObject
@property (nonatomic, strong) UIColor * _Nullable primaryColor;
@property (nonatomic, strong) UIColor * _Nullable secondaryColor;
@property (nonatomic, strong) UIColor * _Nullable errorColor;
@property (nonatomic, strong) UIColor * _Nullable primaryButtonColor;
@property (nonatomic, strong) UIColor * _Nullable primaryButtonColorDisabled;
......@@ -744,6 +767,11 @@ typedef SWIFT_ENUM(NSInteger, MyIdBuildMode, open) {
MyIdBuildModePRODUCTION = 1,
};
typedef SWIFT_ENUM(NSInteger, MyIdCameraSelector, open) {
MyIdCameraSelectorFRONT = 0,
MyIdCameraSelectorBACK = 1,
};
typedef SWIFT_ENUM(NSInteger, MyIdCameraShape, open) {
MyIdCameraShapeELLIPSE = 0,
MyIdCameraShapeCIRCLE = 1,
......@@ -751,10 +779,12 @@ typedef SWIFT_ENUM(NSInteger, MyIdCameraShape, open) {
@class MyIdConfig;
@protocol MyIdClientDelegate;
@class UIViewController;
SWIFT_CLASS("_TtC7MyIdSDK10MyIdClient")
@interface MyIdClient : NSObject
+ (void)startWithConfig:(MyIdConfig * _Nonnull)config withDelegate:(id <MyIdClientDelegate> _Nonnull)delegate;
+ (UIViewController * _Nonnull)runWithConfig:(MyIdConfig * _Nonnull)config withDelegate:(id <MyIdClientDelegate> _Nonnull)delegate SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
......@@ -773,6 +803,7 @@ enum MyIdEntryType : NSInteger;
enum MyIdResidency : NSInteger;
enum MyIdLocale : NSInteger;
enum MyIdResolution : NSInteger;
enum MyIdPresentationStyle : NSInteger;
@class MyIdOrganizationDetails;
SWIFT_CLASS("_TtC7MyIdSDK10MyIdConfig")
......@@ -782,6 +813,7 @@ SWIFT_CLASS("_TtC7MyIdSDK10MyIdConfig")
@property (nonatomic, copy) NSString * _Nullable clientHashId;
@property (nonatomic, copy) NSString * _Nullable passportData;
@property (nonatomic, copy) NSString * _Nullable dateOfBirth;
@property (nonatomic) NSInteger minAge;
@property (nonatomic, copy) NSString * _Nullable sdkHash;
@property (nonatomic, copy) NSString * _Nullable externalId;
@property (nonatomic) float threshold;
......@@ -791,6 +823,8 @@ SWIFT_CLASS("_TtC7MyIdSDK10MyIdConfig")
@property (nonatomic) enum MyIdLocale locale;
@property (nonatomic) enum MyIdCameraShape cameraShape;
@property (nonatomic) enum MyIdResolution resolution;
@property (nonatomic) enum MyIdCameraSelector cameraSelector;
@property (nonatomic) enum MyIdPresentationStyle presentationStyle;
@property (nonatomic, strong) MyIdOrganizationDetails * _Nullable organizationDetails;
@property (nonatomic, strong) MyIdAppearance * _Nullable appearance;
@property (nonatomic) BOOL withPhoto;
......@@ -846,6 +880,11 @@ SWIFT_CLASS("_TtC7MyIdSDK23MyIdOrganizationDetails")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
typedef SWIFT_ENUM(NSInteger, MyIdPresentationStyle, open) {
MyIdPresentationStyleFULL = 0,
MyIdPresentationStyleSHEET = 1,
};
typedef SWIFT_ENUM(NSInteger, MyIdResidency, open) {
MyIdResidencyUSER_DEFINED = 0,
MyIdResidencyRESIDENT = 1,
......@@ -867,13 +906,22 @@ SWIFT_CLASS("_TtC7MyIdSDK10MyIdResult")
@end
SWIFT_CLASS("_TtC7MyIdSDK13RSAKeyFactory")
@interface RSAKeyFactory : NSObject
SWIFT_CLASS("_TtC7MyIdSDK13MyIdViewModel") SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface MyIdViewModel : NSObject
- (void)startMyIdWithClientId:(NSString * _Nonnull)clientId clientHash:(NSString * _Nonnull)clientHash clientHashId:(NSString * _Nonnull)clientHashId passportData:(NSString * _Nullable)passportData dateOfBirth:(NSString * _Nullable)dateOfBirth minAge:(NSInteger)minAge sdkHash:(NSString * _Nullable)sdkHash externalId:(NSString * _Nullable)externalId threshold:(float)threshold buildMode:(enum MyIdBuildMode)buildMode entryType:(enum MyIdEntryType)entryType residency:(enum MyIdResidency)residency locale:(enum MyIdLocale)locale cameraShape:(enum MyIdCameraShape)cameraShape resolution:(enum MyIdResolution)resolution cameraSelector:(enum MyIdCameraSelector)cameraSelector presentationStyle:(enum MyIdPresentationStyle)presentationStyle organizationDetails:(MyIdOrganizationDetails * _Nullable)organizationDetails appearance:(MyIdAppearance * _Nullable)appearance withPhoto:(BOOL)withPhoto;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface MyIdViewModel (SWIFT_EXTENSION(MyIdSDK)) <MyIdClientDelegate>
- (void)onSuccessWithResult:(MyIdResult * _Nonnull)result;
- (void)onErrorWithException:(MyIdException * _Nonnull)exception;
- (void)onUserExited;
@end
#endif
......
......@@ -10,7 +10,7 @@
</data>
<key>Headers/MyIdSDK-Swift.h</key>
<data>
XUn/6gq8vuZw0KtF42q/4lYYxng=
KufxuT2ZS1Ks2/WQILpOMss+Uu0=
</data>
<key>Headers/MyIdSDK.h</key>
<data>
......@@ -22,43 +22,43 @@
</data>
<key>Modules/MyIdSDK.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
<data>
FmIIgltXcb7s8u+f5byt3jQce4w=
C+7Up5vudNgVthoxzm3VoyMvmA8=
</data>
<key>Modules/MyIdSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
<data>
JgFQHOwMq3+Jv9Z+47DAtn+qUmQ=
pzR6SW+SumwP7Bvtkr/7nZuBVuQ=
</data>
<key>Modules/MyIdSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<data>
vJ0rg2yuhQlA/uiCxNPhs0VN2zQ=
1hKK3otVpBJ7A238GdVQy1PK4bA=
</data>
<key>Modules/MyIdSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<data>
JgFQHOwMq3+Jv9Z+47DAtn+qUmQ=
pzR6SW+SumwP7Bvtkr/7nZuBVuQ=
</data>
<key>Modules/MyIdSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<data>
7CiceHSSeyi4Ay4or+xsOAo11Ys=
ElxSWwkUkG4z/j3gxxOeiqU5jAA=
</data>
<key>Modules/MyIdSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
<data>
FmIIgltXcb7s8u+f5byt3jQce4w=
C+7Up5vudNgVthoxzm3VoyMvmA8=
</data>
<key>Modules/MyIdSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
<data>
Xoz2nm3P6WQF1NSjv6BnVkgXttY=
JLzKime05KH8fBsawov243NaIkQ=
</data>
<key>Modules/MyIdSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<data>
7cxskObkb1ETUlKinUqbst++4cg=
5Bh17Ll3OSESqLL4x9rHaTNyYAw=
</data>
<key>Modules/MyIdSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<data>
Xoz2nm3P6WQF1NSjv6BnVkgXttY=
JLzKime05KH8fBsawov243NaIkQ=
</data>
<key>Modules/MyIdSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
arzVL6jQj2raGk2ffy5j/uhxueA=
DGQLSO8R8mIuDtpMb99mY4SBR/Y=
</data>
<key>Modules/module.modulemap</key>
<data>
......@@ -78,7 +78,7 @@
<dict>
<key>hash2</key>
<data>
u6ZEP0vWo4p9aDEXmAVo8Lxms0Lo1I4rucDIYt9o/ck=
peuuKVUgDXrKxqGZrYXk1IWNX9355Fz+YJRZHGlRtpc=
</data>
</dict>
<key>Headers/MyIdSDK.h</key>
......@@ -92,70 +92,70 @@
<dict>
<key>hash2</key>
<data>
+LKCFEsqcxM3H2wD0GCd7OxKRpws06sJQ+DNjVXiugw=
1kiLqu6SI2BoWb7wo0Kj+K/vXpaD406Zn8HJOOlkhf4=
</data>
</dict>
<key>Modules/MyIdSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
52NqmNir1yN4xcrEimb107IrIkZRzdR+SR8Lgh6V/rE=
bc6o/wTky6ywXf46zV+VymX3udkzalKC8UWTrwBmlBk=
</data>
</dict>
<key>Modules/MyIdSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
jVp7OXbvDxC9vO1Mi2MEbeCPZ54IgSvRQa0zsU4VcBE=
LTibgjRL+B1KH9Um0gky4uUP7BWGjgj/p51l1U1mNX4=
</data>
</dict>
<key>Modules/MyIdSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
52NqmNir1yN4xcrEimb107IrIkZRzdR+SR8Lgh6V/rE=
bc6o/wTky6ywXf46zV+VymX3udkzalKC8UWTrwBmlBk=
</data>
</dict>
<key>Modules/MyIdSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
dSiS02P0nLt+philMcqV0a/LG9kF47a/yn6e3w7K4no=
w1L09JgjRALnHrs2NSryhw3gwReY+v/vCEMqorS9BKE=
</data>
</dict>
<key>Modules/MyIdSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
<dict>
<key>hash2</key>
<data>
+LKCFEsqcxM3H2wD0GCd7OxKRpws06sJQ+DNjVXiugw=
1kiLqu6SI2BoWb7wo0Kj+K/vXpaD406Zn8HJOOlkhf4=
</data>
</dict>
<key>Modules/MyIdSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
67PceeEuTV6GBQQ4IkL0nLGt03JLJVJsS3rp2f6O0f8=
x+vFsFLPovaQkt5HHZ0s5UJEdthOUU4GLJJgcXydMzw=
</data>
</dict>
<key>Modules/MyIdSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
jzk8xeiNNAc06KP4NfQVP8AMDC2x3bqZREyAqeCsMJ8=
NPIjzz9ZAayv1XPQX2CCsIRvJn5QHOoY2gk/35yO+DU=
</data>
</dict>
<key>Modules/MyIdSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
67PceeEuTV6GBQQ4IkL0nLGt03JLJVJsS3rp2f6O0f8=
x+vFsFLPovaQkt5HHZ0s5UJEdthOUU4GLJJgcXydMzw=
</data>
</dict>
<key>Modules/MyIdSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
lM/KIDJ088Yh2JDyf4mYeg5cy0mu2jKltlhwZVWzEQk=
GqJAEqqbqZ2pKYtRJlaBZL3CPsPWnBTAJeAi6xyqV5Q=
</data>
</dict>
<key>Modules/module.modulemap</key>
......
......@@ -14,4 +14,4 @@
> **Note**: Ensure you add the .xcframework files, rather than the .framework files.
5. Under the **Embed** column, ensure **Embed & Sign** is set for MyIdSDK framework.=
5. Under the **Embed** column, ensure **Embed & Sign** is set for MyIdSDK framework.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment