Skip to content

Commit

Permalink
add tvOS to podspec and reduce version to 11
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilveirah committed Sep 5, 2024
1 parent d8938a2 commit c42ea49
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 8 additions & 2 deletions SPMobileCore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,11 @@ Pod::Spec.new do |spec|
spec.summary = 'The internal Network & Data layers used by our mobile SDKs'
spec.vendored_frameworks = 'SPMobileCore.xcframework'
spec.libraries = 'c++'
spec.ios.deployment_target = '11.0'
end
spec.ios.deployment_target = '10.0'
spec.tvos.deployment_target = '10.0'





end
3 changes: 2 additions & 1 deletion core/SPMobileCore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ Pod::Spec.new do |spec|
spec.summary = 'The internal Network & Data layers used by our mobile SDKs'
spec.vendored_frameworks = 'build/cocoapods/framework/SPMobileCore.framework'
spec.libraries = 'c++'
spec.ios.deployment_target = '11.0'
spec.ios.deployment_target = '10.0'
spec.tvos.deployment_target = '10.0'


if !Dir.exist?('build/cocoapods/framework/SPMobileCore.framework') || Dir.empty?('build/cocoapods/framework/SPMobileCore.framework')
Expand Down
3 changes: 2 additions & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ kotlin {
source = "{ :git => '$gitRepoUrl', :tag => '$coreVersion' }"
authors = "André Herculano"
version = coreVersion
ios.deploymentTarget = "11.0"
ios.deploymentTarget = "10.0"
tvos.deploymentTarget = "10.0"
framework {
binaryOptions["bundleId"] = "com.sourcepoint.SPMobileCore"
baseName = "SPMobileCore"
Expand Down

0 comments on commit c42ea49

Please sign in to comment.