diff --git a/.gn b/.gn index 9110455155..5c9f362c3f 100644 --- a/.gn +++ b/.gn @@ -63,8 +63,7 @@ default_args = { mac_sdk_min = "10.12" - # http://bugs.webrtc.org/8570 - ios_deployment_target = "9.0" + ios_deployment_target = "10.0" # The SDK API level, in contrast, is set by build/android/AndroidManifest.xml. android32_ndk_api_level = 16 diff --git a/tools_webrtc/ios/build_ios_libs.py b/tools_webrtc/ios/build_ios_libs.py index 46508cf15f..b0d28c0151 100755 --- a/tools_webrtc/ios/build_ios_libs.py +++ b/tools_webrtc/ios/build_ios_libs.py @@ -33,7 +33,7 @@ SDK_OUTPUT_DIR = os.path.join(SRC_DIR, 'out_ios_libs') SDK_FRAMEWORK_NAME = 'WebRTC.framework' DEFAULT_ARCHS = ENABLED_ARCHS = ['arm64', 'arm', 'x64', 'x86'] -IOS_DEPLOYMENT_TARGET = '9.0' +IOS_DEPLOYMENT_TARGET = '10.0' LIBVPX_BUILD_VP9 = False sys.path.append(os.path.join(SCRIPT_DIR, '..', 'libs'))