Skip to content

Commit

Permalink
Upgrade default minIOSVersion to 12.0 (#67)
Browse files Browse the repository at this point in the history
* feat(ios): Upgrade to minIOSVersion 12.0, since this is, what XCode 15 supports

* feat: Add CHANGES
  • Loading branch information
Berstanio committed Apr 20, 2024
1 parent 1ea7e74 commit c2a35ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[2.5.2]
- [BREAKING CHANGE] Increased default `minIOSVersion` to iOS 12. Default can be overridden with `minIOSVersion = "11.0"`
- Compile all files that are defined by cIncludes/cExcludes/cppIncludes/cppExcludes
- Add support for defining multiple source directories in the gradle plugin

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ public class BuildTarget {
public String[] androidApplicationMk = {};
/** ios framework bundle identifier, if null an automatically generated bundle identifier will be used */
public String xcframeworkBundleIdentifier = null;
/** Minimum supported iOS version, will default to iOS 11*/
public String minIOSVersion = "11.0";
/** Minimum supported iOS version, will default to iOS 12*/
public String minIOSVersion = "12.0";

/** Creates a new build target. See members of this class for a description of the parameters. */
public BuildTarget(Os targetType, Architecture.Bitness bitness, String[] cIncludes, String[] cExcludes, String[] cppIncludes, String[] cppExcludes, String[] headerDirs, String compilerPrefix, String cFlags, String cppFlags, String linkerFlags) {
Expand Down

0 comments on commit c2a35ef

Please sign in to comment.