-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from approov/feature/add-watchOS-support-podfile
Add support for watchOS platform in podspec file
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "approov-ios-sdk" | ||
s.version = "3.3.0" | ||
s.summary = "ApproovSDK iOS framework" | ||
s.description = <<-DESC | ||
Approov mobile attestation framework for iOS | ||
DESC | ||
s.homepage = "https://approov.io" | ||
# brief license entry: | ||
s.license = "https://approov.io/terms" | ||
s.authors = { "CriticalBlue, Ltd." => "[email protected]" } | ||
s.platform = :ios | ||
s.source = { :git => "https://github.com/approov/approov-ios-sdk.git", :tag => "#{s.version}" } | ||
s.requires_arc = true | ||
s.pod_target_xcconfig = { 'VALID_ARCHS' => 'arm64 x86_64' } | ||
s.ios.vendored_frameworks = "Approov.xcframework" | ||
s.ios.deployment_target = '12.0' | ||
|
||
end |
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,24 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "approov-ios-sdk" | ||
s.version = "3.3.1" | ||
s.summary = "ApproovSDK iOS/watchOS framework" | ||
s.description = <<-DESC | ||
Approov mobile attestation framework for iOS and watchOS | ||
DESC | ||
s.homepage = "https://approov.io" | ||
# brief license entry: | ||
s.license = "https://approov.io/terms" | ||
s.authors = { "CriticalBlue, Ltd." => "[email protected]" } | ||
s.source = { :git => "https://github.com/approov/approov-ios-sdk.git", :tag => "#{s.version}" } | ||
s.requires_arc = true | ||
s.pod_target_xcconfig = { 'VALID_ARCHS' => 'arm64 arm64_32 x86_64' } | ||
|
||
# Define platform support | ||
s.ios.deployment_target = '12.0' | ||
s.watchos.deployment_target = '9.0' | ||
|
||
# Specify vendored frameworks for both platforms | ||
s.ios.vendored_frameworks = "Approov.xcframework" | ||
s.watchos.vendored_frameworks = "Approov.xcframework" | ||
|
||
end |