Skip to content

Commit

Permalink
Merge pull request #471 from gini/iOS_12_target_insurance
Browse files Browse the repository at this point in the history
iOS 12 target insurance
  • Loading branch information
zladzeyka authored Mar 28, 2024
2 parents 702297a + 29c4433 commit 2d7504b
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Further documentation with information about how install and integrate it can be

## Requirements

- iOS 11+
- Xcode 12+
- iOS 12+
- Xcode 15+

## Author

Expand Down
2 changes: 1 addition & 1 deletion HealthAPILibrary/GiniHealthAPILibrary/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription

let package = Package(
name: "GiniHealthAPILibrary",
platforms: [.iOS(.v11)],
platforms: [.iOS(.v12)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
Expand Down
4 changes: 2 additions & 2 deletions HealthAPILibrary/GiniHealthAPILibrary/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Further documentation with information about how install and integrate it can be

## Requirements

- iOS 11+
- Xcode 12+
- iOS 12+
- Xcode 15+

## Author

Expand Down
2 changes: 1 addition & 1 deletion HealthAPILibrary/GiniHealthAPILibraryPinning/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription

let package = Package(
name: "GiniHealthAPILibraryPinning",
platforms: [.iOS(.v12), .macOS(.v10_13)],
platforms: [.iOS(.v12)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ The Gini Health API provides an information extraction service for analyzing hea

## Requirements

- iOS 11.0+
- iOS 12.0+
- Xcode 15.3+

**Note:**
In order to have better analysis results it is highly recommended to enable only devices with 8MP camera and flash. These devices would be:

* iPhones with iOS 11 or higher.
* iPhones with iOS 12 or higher.
* iPad Pro devices (iPad Air 2 and iPad Mini 4 have 8MP camera but no flash).

## Author
Expand Down
2 changes: 1 addition & 1 deletion HealthSDK/GiniHealthSDK/Package-release.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "GiniHealthSDK",
defaultLocalization: "en",
platforms: [.iOS(.v11)],
platforms: [.iOS(.v12)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
Expand Down
2 changes: 1 addition & 1 deletion HealthSDK/GiniHealthSDK/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "GiniHealthSDK",
defaultLocalization: "en",
platforms: [.iOS(.v11)],
platforms: [.iOS(.v12)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
Expand Down
6 changes: 3 additions & 3 deletions HealthSDK/GiniHealthSDK/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ To inject your API credentials into the Health and Bank example apps you need to

## Requirements

- iOS 11+
- Xcode 12+
- iOS 12+
- Xcode 15+

**Note:**
In order to have better analysis results it is highly recommended to enable only devices with 8MP camera and flash. These devices would be:

* iPhones with iOS 11 or higher.
* iPhones with iOS 12 or higher.
* iPad Pro devices (iPad Air 2 and iPad Mini 4 have 8MP camera but no flash).

## Author
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import GiniHealthAPILibrary
Uses a callback mechanism to handle payment provider requests.
*/
public protocol PaymentComponentsControllerProtocol: AnyObject {
func isLoadingStateChanged(isLoading: Bool) // Because we can't use Combine, iOS 11 supported
func isLoadingStateChanged(isLoading: Bool) // Because we can't use Combine
func didFetchedPaymentProviders()
}

Expand Down
2 changes: 1 addition & 1 deletion HealthSDK/GiniHealthSDKPinning/Package-release.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription

let package = Package(
name: "GiniHealthSDKPinning",
platforms: [.iOS(.v12), .macOS(.v10_13)],
platforms: [.iOS(.v12)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
Expand Down
2 changes: 1 addition & 1 deletion HealthSDK/GiniHealthSDKPinning/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription

let package = Package(
name: "GiniHealthSDKPinning",
platforms: [.iOS(.v12), .macOS(.v10_13)],
platforms: [.iOS(.v12)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
Expand Down

0 comments on commit 2d7504b

Please sign in to comment.