Skip to content

Commit

Permalink
bumped min deployment target of xcode builds to 12.0 for compatibilit…
Browse files Browse the repository at this point in the history
…y with latest xcode
  • Loading branch information
shannah committed Mar 16, 2024
1 parent 7819ca9 commit 3877f7b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private File getBuildinRes() {
return new File(tmpFile, "btres");
}

private String minDeploymentTargets = "6.0";
private String minDeploymentTargets = "12.0";
private void addMinDeploymentTarget(String target) {
minDeploymentTargets += ","+target;
}
Expand Down Expand Up @@ -1867,6 +1867,7 @@ public void usesClassMethod(String cls, String method) {
podFileContents += "\n\npost_install do |installer|\n" +
" installer.pods_project.targets.each do |target|\n" +
" target.build_configurations.each do |config|\n" +
" config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = \"" + getDeploymentTarget(request) + "\"\n" +
" config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = \"\"\n" +
" config.build_settings['CODE_SIGNING_REQUIRED'] = \"NO\"\n" +
" config.build_settings['CODE_SIGNING_ALLOWED'] = \"NO\"\n" +
Expand Down

0 comments on commit 3877f7b

Please sign in to comment.