Skip to content

Commit

Permalink
Make rn_xplat_cxx_library and rn_apple_library target iOS 11
Browse files Browse the repository at this point in the history
Summary:
This forces individual RN libraries to target SDK 11+

Changelog: [iOS] Make rn_xplat_cxx_library and rn_apple_library target iOS 11

Reviewed By: shergin

Differential Revision: D26179411

fbshipit-source-id: 898201943164ff8e53924eee5ca877103bf0f62a
  • Loading branch information
Peter Argany authored and facebook-github-bot committed Feb 2, 2021
1 parent 12fccde commit d54b286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build_defs/oss/rn_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def rn_android_prebuilt_aar(*args, **kwargs):
def rn_apple_library(*args, **kwargs):
kwargs.setdefault("link_whole", True)
kwargs.setdefault("enable_exceptions", True)
kwargs.setdefault("target_sdk_version", "10.0")
kwargs.setdefault("target_sdk_version", "11.0")

# Unsupported kwargs
_ = kwargs.pop("autoglob", False)
Expand Down

0 comments on commit d54b286

Please sign in to comment.