Skip to content

Commit

Permalink
set iOS deployment target to 11 (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
hewigovens committed Jun 2, 2019
1 parent f885df4 commit e9f8499
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion TrustWalletCore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Pod::Spec.new do |s|
s.license = 'MIT'
s.authors = { 'Alejandro Isaza' => 'al@isaza.ca' }

s.ios.deployment_target = '10.0'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.12'
s.swift_version = '5.0'

Expand Down
2 changes: 1 addition & 1 deletion cmake/ios.toolchain.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ set(CMAKE_C_FLAGS
"${XCODE_IOS_PLATFORM_VERSION_FLAGS} ${BITCODE} -fobjc-abi-version=2 ${FOBJC_ARC} ${CMAKE_C_FLAGS}")
# Hidden visibilty is required for C++ on iOS.
set(CMAKE_CXX_FLAGS
"${XCODE_IOS_PLATFORM_VERSION_FLAGS} ${BITCODE} ${VISIBILITY} -fvisibility-inlines-hidden -fobjc-abi-version=2 -fno-aligned-allocation ${FOBJC_ARC} ${CMAKE_CXX_FLAGS}")
"${XCODE_IOS_PLATFORM_VERSION_FLAGS} ${BITCODE} ${VISIBILITY} -fvisibility-inlines-hidden -fobjc-abi-version=2 ${FOBJC_ARC} ${CMAKE_CXX_FLAGS}")
set(CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS} -DNDEBUG -Os -ffast-math ${BITCODE} ${CMAKE_CXX_FLAGS_MINSIZEREL}")
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS} -DNDEBUG -O2 -g -ffast-math ${BITCODE} ${CMAKE_CXX_FLAGS_RELWITHDEBINFO}")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS} -DNDEBUG -O3 -ffast-math ${BITCODE} ${CMAKE_CXX_FLAGS_RELEASE}")
Expand Down
4 changes: 2 additions & 2 deletions tools/ios-release
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Pod::Spec.new do |s|
s.license = 'MIT'
s.authors = { 'Alejandro Isaza' => 'al@isaza.ca' }
s.ios.deployment_target = '10.0'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.12'
s.swift_version = '5.0'
Expand All @@ -69,7 +69,7 @@ Pod::Spec.new do |s|
s.pod_target_xcconfig = {
'ARCHS[sdk=iphonesimulator*]' => '$(ARCHS_STANDARD_64_BIT)'
}
s.dependency 'SwiftProtobuf', '~> 1.3.0'
s.dependency 'SwiftProtobuf', '~> 1.5.0'
end
PODSPEC
file = File.new('build/TrustWalletCore.podspec', 'w')
Expand Down

0 comments on commit e9f8499

Please sign in to comment.