Skip to content

Commit

Permalink
Merge branch 'main' into Dependecy
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubham Garg committed Jan 12, 2024
2 parents f4cd764 + cebf66f commit ec0de52
Show file tree
Hide file tree
Showing 17 changed files with 36 additions and 34 deletions.
4 changes: 3 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ let VERSION_ANALYTICS_KIT: PackageDescription.Version = "3.0.0"
let VERSION_CRASH_REPORTER: PackageDescription.Version = "3.0.0"
let VERSION_NETWORK_REACHABILITY: PackageDescription.Version = "2.0.1"
let VERSION_COMMON_UI: PackageDescription.Version = "1.2.0"

let package = Package(

name: "PayUIndia-NativeOtpAssist",
Expand Down Expand Up @@ -37,7 +38,8 @@ let package = Package(
"PayUIndia-Analytics",
"PayUIndia-NetworkReachability",
"PayUIndia-CrashReporter",
"PayUNativeOtpAssist"
"PayUNativeOtpAssist",
"PayUIndia-CommonUI"
],
path: "PayUIndia-NativeOtpAssistWrapper"
)
Expand Down
2 changes: 1 addition & 1 deletion PayUIndia-NativeOtpAssist.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ s.description = "The OTP Assist SDK provides a complete authentication f
s.source = { :git => "https://github.com/payu-intrepos/PayUNativeOtpAssist-iOS.git",
:tag => "#{s.version}"
}
s.documentation_url = "https://payumobile.gitbook.io/sdk-integration/ios/native-otp-assist"
s.documentation_url = "https://docs.payu.in/docs/ios-native-otp-assist-sdk"
s.platform = :ios , "11.0"
s.vendored_frameworks = 'framework/PayUNativeOtpAssist.xcframework'
s.dependency 'PayUIndia-PayUParams', '~>5.2'
Expand Down
10 changes: 5 additions & 5 deletions framework/PayUNativeOtpAssist.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>PayUNativeOtpAssist.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>PayUNativeOtpAssist.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,6 @@ SWIFT_PROTOCOL("_TtP19PayUNativeOtpAssist21PayUOtpAssistDelegate_")
/// :returns: Bool, When you want to handle fallback scenarios then return ‘false’ otherwise return ‘true’.
/// The default value is ‘true’
- (BOOL)shouldHandleFallbackWithPayUAcsRequest:(PayUAcsRequest * _Nonnull)payUAcsRequest SWIFT_WARN_UNUSED_RESULT;
@required
/// It’s an optional callback method, to collect hash.
/// You just need to change the return value to false.
/// :param: [String: String], It contains hashName and hashString,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1080,6 +1080,7 @@
"protocolReq": true,
"objc_name": "generateHashFor:onCompletion:",
"declAttributes": [
"Optional",
"ObjC",
"RawDocComment"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extension PayUParamsKit.PayUError {
@objc func onError(errorCode: Swift.String?, errorMessage: Swift.String?)
@objc func onPaymentCancel(isTxnInitiated: Swift.Bool)
@objc optional func shouldHandleFallback(payUAcsRequest: PayUNativeOtpAssist.PayUAcsRequest) -> Swift.Bool
@objc func generateHash(for param: [Swift.String : Swift.String], onCompletion: @escaping (_ hashDict: [Swift.String : Swift.String]) -> Swift.Void)
@objc optional func generateHash(for param: [Swift.String : Swift.String], onCompletion: @escaping (_ hashDict: [Swift.String : Swift.String]) -> Swift.Void)
}
@_inheritsConvenienceInitializers @objc public class PayUOtpAssistConfig : ObjectiveC.NSObject {
@objc public var themeColor: UIKit.UIColor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extension PayUParamsKit.PayUError {
@objc func onError(errorCode: Swift.String?, errorMessage: Swift.String?)
@objc func onPaymentCancel(isTxnInitiated: Swift.Bool)
@objc optional func shouldHandleFallback(payUAcsRequest: PayUNativeOtpAssist.PayUAcsRequest) -> Swift.Bool
@objc func generateHash(for param: [Swift.String : Swift.String], onCompletion: @escaping (_ hashDict: [Swift.String : Swift.String]) -> Swift.Void)
@objc optional func generateHash(for param: [Swift.String : Swift.String], onCompletion: @escaping (_ hashDict: [Swift.String : Swift.String]) -> Swift.Void)
}
@_inheritsConvenienceInitializers @objc public class PayUOtpAssistConfig : ObjectiveC.NSObject {
@objc public var themeColor: UIKit.UIColor
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,6 @@ SWIFT_PROTOCOL("_TtP19PayUNativeOtpAssist21PayUOtpAssistDelegate_")
/// :returns: Bool, When you want to handle fallback scenarios then return ‘false’ otherwise return ‘true’.
/// The default value is ‘true’
- (BOOL)shouldHandleFallbackWithPayUAcsRequest:(PayUAcsRequest * _Nonnull)payUAcsRequest SWIFT_WARN_UNUSED_RESULT;
@required
/// It’s an optional callback method, to collect hash.
/// You just need to change the return value to false.
/// :param: [String: String], It contains hashName and hashString,
Expand Down Expand Up @@ -707,7 +706,6 @@ SWIFT_PROTOCOL("_TtP19PayUNativeOtpAssist21PayUOtpAssistDelegate_")
/// :returns: Bool, When you want to handle fallback scenarios then return ‘false’ otherwise return ‘true’.
/// The default value is ‘true’
- (BOOL)shouldHandleFallbackWithPayUAcsRequest:(PayUAcsRequest * _Nonnull)payUAcsRequest SWIFT_WARN_UNUSED_RESULT;
@required
/// It’s an optional callback method, to collect hash.
/// You just need to change the return value to false.
/// :param: [String: String], It contains hashName and hashString,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1080,6 +1080,7 @@
"protocolReq": true,
"objc_name": "generateHashFor:onCompletion:",
"declAttributes": [
"Optional",
"ObjC",
"RawDocComment"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extension PayUParamsKit.PayUError {
@objc func onError(errorCode: Swift.String?, errorMessage: Swift.String?)
@objc func onPaymentCancel(isTxnInitiated: Swift.Bool)
@objc optional func shouldHandleFallback(payUAcsRequest: PayUNativeOtpAssist.PayUAcsRequest) -> Swift.Bool
@objc func generateHash(for param: [Swift.String : Swift.String], onCompletion: @escaping (_ hashDict: [Swift.String : Swift.String]) -> Swift.Void)
@objc optional func generateHash(for param: [Swift.String : Swift.String], onCompletion: @escaping (_ hashDict: [Swift.String : Swift.String]) -> Swift.Void)
}
@_inheritsConvenienceInitializers @objc public class PayUOtpAssistConfig : ObjectiveC.NSObject {
@objc public var themeColor: UIKit.UIColor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extension PayUParamsKit.PayUError {
@objc func onError(errorCode: Swift.String?, errorMessage: Swift.String?)
@objc func onPaymentCancel(isTxnInitiated: Swift.Bool)
@objc optional func shouldHandleFallback(payUAcsRequest: PayUNativeOtpAssist.PayUAcsRequest) -> Swift.Bool
@objc func generateHash(for param: [Swift.String : Swift.String], onCompletion: @escaping (_ hashDict: [Swift.String : Swift.String]) -> Swift.Void)
@objc optional func generateHash(for param: [Swift.String : Swift.String], onCompletion: @escaping (_ hashDict: [Swift.String : Swift.String]) -> Swift.Void)
}
@_inheritsConvenienceInitializers @objc public class PayUOtpAssistConfig : ObjectiveC.NSObject {
@objc public var themeColor: UIKit.UIColor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1080,6 +1080,7 @@
"protocolReq": true,
"objc_name": "generateHashFor:onCompletion:",
"declAttributes": [
"Optional",
"ObjC",
"RawDocComment"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extension PayUParamsKit.PayUError {
@objc func onError(errorCode: Swift.String?, errorMessage: Swift.String?)
@objc func onPaymentCancel(isTxnInitiated: Swift.Bool)
@objc optional func shouldHandleFallback(payUAcsRequest: PayUNativeOtpAssist.PayUAcsRequest) -> Swift.Bool
@objc func generateHash(for param: [Swift.String : Swift.String], onCompletion: @escaping (_ hashDict: [Swift.String : Swift.String]) -> Swift.Void)
@objc optional func generateHash(for param: [Swift.String : Swift.String], onCompletion: @escaping (_ hashDict: [Swift.String : Swift.String]) -> Swift.Void)
}
@_inheritsConvenienceInitializers @objc public class PayUOtpAssistConfig : ObjectiveC.NSObject {
@objc public var themeColor: UIKit.UIColor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extension PayUParamsKit.PayUError {
@objc func onError(errorCode: Swift.String?, errorMessage: Swift.String?)
@objc func onPaymentCancel(isTxnInitiated: Swift.Bool)
@objc optional func shouldHandleFallback(payUAcsRequest: PayUNativeOtpAssist.PayUAcsRequest) -> Swift.Bool
@objc func generateHash(for param: [Swift.String : Swift.String], onCompletion: @escaping (_ hashDict: [Swift.String : Swift.String]) -> Swift.Void)
@objc optional func generateHash(for param: [Swift.String : Swift.String], onCompletion: @escaping (_ hashDict: [Swift.String : Swift.String]) -> Swift.Void)
}
@_inheritsConvenienceInitializers @objc public class PayUOtpAssistConfig : ObjectiveC.NSObject {
@objc public var themeColor: UIKit.UIColor
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
</data>
<key>Headers/PayUNativeOtpAssist-Swift.h</key>
<data>
fSxmnTY3xOr0hACXpfvqcj2oazs=
ty7t4F/TNAt/5cVAKERgzVJWZf4=
</data>
<key>Headers/PayuNativeOtpAssist.h</key>
<data>
Expand All @@ -90,43 +90,43 @@
</data>
<key>Modules/PayUNativeOtpAssist.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
<data>
9Z/Ua3AYzUvrGT3zQbghDlU0Vu8=
ztbAQemn7m2N4v6Zr3AA14vfDi8=
</data>
<key>Modules/PayUNativeOtpAssist.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
<data>
wH5PRFsPndOSL4zwLqkTlchk1iw=
MHkaJJWGqjAO3u8DtzixrkAmfpo=
</data>
<key>Modules/PayUNativeOtpAssist.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<data>
v2CWopH0KDyv5KVGuxWsY/n0gXw=
</data>
<key>Modules/PayUNativeOtpAssist.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<data>
wH5PRFsPndOSL4zwLqkTlchk1iw=
MHkaJJWGqjAO3u8DtzixrkAmfpo=
</data>
<key>Modules/PayUNativeOtpAssist.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<data>
CuOr1UC8j3FXvuqqCTaJN0MwgRI=
KplU2tGX5IwIO30KD2LLbFGHG8U=
</data>
<key>Modules/PayUNativeOtpAssist.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
<data>
9Z/Ua3AYzUvrGT3zQbghDlU0Vu8=
ztbAQemn7m2N4v6Zr3AA14vfDi8=
</data>
<key>Modules/PayUNativeOtpAssist.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
<data>
RRNvb52M6miR03nth3yuJnPW/Sg=
InFx3naifQMd0BEPTNbEx/KyOoc=
</data>
<key>Modules/PayUNativeOtpAssist.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<data>
EKcmsXCBm7M/hUV7/Ah/qSr83/Q=
</data>
<key>Modules/PayUNativeOtpAssist.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<data>
RRNvb52M6miR03nth3yuJnPW/Sg=
InFx3naifQMd0BEPTNbEx/KyOoc=
</data>
<key>Modules/PayUNativeOtpAssist.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
g43I5REcQ/lEC19Cm08HiwI4xhE=
qRkDwQ+EXLU19n4UPh0Qyqw9sP0=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -341,7 +341,7 @@
<dict>
<key>hash2</key>
<data>
84VGJBvqqPOiUyqTgfveewj+enSZYpihToyv57ImSiE=
KCOviwOdYBVastcmZotQ9PIsBFV/88XdERu3gA53wR0=
</data>
</dict>
<key>Headers/PayuNativeOtpAssist.h</key>
Expand All @@ -355,14 +355,14 @@
<dict>
<key>hash2</key>
<data>
4tYwWZKJWVP0JBjrR2ozKWm6i5PCek3B13kOtRnCMqY=
dGFepLDLr+buCZCwn4LIgOwWNctY1rRWMjAtnoTcrMA=
</data>
</dict>
<key>Modules/PayUNativeOtpAssist.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
mMzEcs5WsAHPh2NqU038qvLgbmAwCZHx0GJCngT9Q8I=
P7GivY3TmbWc5F908/dIAhyBmLzGxkPUzUoLEpfSmFk=
</data>
</dict>
<key>Modules/PayUNativeOtpAssist.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
Expand All @@ -376,28 +376,28 @@
<dict>
<key>hash2</key>
<data>
mMzEcs5WsAHPh2NqU038qvLgbmAwCZHx0GJCngT9Q8I=
P7GivY3TmbWc5F908/dIAhyBmLzGxkPUzUoLEpfSmFk=
</data>
</dict>
<key>Modules/PayUNativeOtpAssist.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
eGaq3ERBZHTVTEQCc8tzyZqX7KyBdY0eil72w2QLZc4=
ghxS+8V5qDfcoMsAruarFiWhLJIzZKWDuJFrIKarBfc=
</data>
</dict>
<key>Modules/PayUNativeOtpAssist.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
<dict>
<key>hash2</key>
<data>
4tYwWZKJWVP0JBjrR2ozKWm6i5PCek3B13kOtRnCMqY=
dGFepLDLr+buCZCwn4LIgOwWNctY1rRWMjAtnoTcrMA=
</data>
</dict>
<key>Modules/PayUNativeOtpAssist.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
Xa5+GGRrtno2eytTqWfHoElfp6vfeWdxRgO820kRj9I=
DUmonA4hhtx7CO7SDkiQiCHlUuy70oCrT10u+xy9wBk=
</data>
</dict>
<key>Modules/PayUNativeOtpAssist.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
Expand All @@ -411,14 +411,14 @@
<dict>
<key>hash2</key>
<data>
Xa5+GGRrtno2eytTqWfHoElfp6vfeWdxRgO820kRj9I=
DUmonA4hhtx7CO7SDkiQiCHlUuy70oCrT10u+xy9wBk=
</data>
</dict>
<key>Modules/PayUNativeOtpAssist.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
RGWhjN6rIUeC4oBokGkLH05pOJ1C4C5mlssl8yHs8U8=
sw5kHt9sHJyZHyghnEFnD3Dxjbl0dazSkuYelXkZv7U=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down

0 comments on commit ec0de52

Please sign in to comment.