-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Team Mobile Schorsch
committed
Oct 23, 2023
1 parent
92fe96e
commit ff41227
Showing
30 changed files
with
903 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ On *iPad* we support portrait and landscape orientations. | |
|
||
## Documentation | ||
|
||
Further documentation with installation, integration or customization guides can be found in our [website](https://developer.gini.net/gini-mobile-ios/GiniCaptureSDK). | ||
Further documentation with installation, integration or customization guides can be found in our [website](https://gini.atlassian.net/wiki/spaces/ICSV/overview). | ||
|
||
## Requirements | ||
|
||
|
@@ -40,6 +40,6 @@ Gini GmbH, [email protected] | |
|
||
## License | ||
|
||
The Gini Capture SDK for iOS is licensed under a Private License. See [the license](https://developer.gini.net/gini-mobile-ios/GiniCaptureSDK/license.html) for more info. | ||
The Gini Capture SDK for iOS is licensed under a Private License. See [the license](https://gini.atlassian.net/wiki/spaces/ICSV/pages/13074449/License) for more info. | ||
|
||
**Important:** Always make sure to ship all license notices and permissions with your application. |
18 changes: 18 additions & 0 deletions
18
Sources/GiniCaptureSDK/Core/Extensions/NSRegularExpression.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// NSRegularExpression.swift | ||
// | ||
// | ||
// Copyright © 2023 Gini GmbH. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
extension NSRegularExpression { | ||
convenience init(_ pattern: String, options: NSRegularExpression.Options = []) { | ||
do { | ||
try self.init(pattern: pattern, options: options) | ||
} catch { | ||
preconditionFailure("Illegal regular expression pattern: \(pattern).") | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
Sources/GiniCaptureSDK/Core/Extensions/UIActivityIndicatorView.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// UIActivityIndicatorView.swift | ||
// | ||
// | ||
// Created by Valentina Iancu on 19.10.23. | ||
// | ||
|
||
import UIKit | ||
|
||
extension UIActivityIndicatorView { | ||
func applyLargeStyle() { | ||
if #available(iOS 13.0, *) { | ||
self.style = .large | ||
} else { | ||
self.style = .whiteLarge | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.