Skip to content

Commit

Permalink
fix ios version string
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdean committed Oct 25, 2024
1 parent 822af3f commit f7d90a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Bugsnag.iOS/Bugsnag.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TargetPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">17.5</TargetPlatformVersion>

<Version>$([System.IO.File]::ReadAllText('$(MSBuildProjectDirectory)\..\.swift-sdk-version').Trim())</Version>
<Version>$([System.IO.File]::ReadAllText('$(MSBuildProjectDirectory)\..\.swift-sdk-version').Trim()).1</Version>
<Authors>Zach Dean</Authors>
<Company>Ramsey Solutions</Company>
<Copyright>Copyright Ramsey Solutions. All rights reserved.</Copyright>
Expand Down
5 changes: 4 additions & 1 deletion bugsnag-cocoa-build/bugsnag-ios.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1079,18 +1079,19 @@
GCC_WARN_UNUSED_VARIABLE = YES;
GENERATE_INFOPLIST_FILE = YES;
HEADER_SEARCH_PATHS = "$(SRCROOT)/Bugsnag/include/";
MARKETING_VERSION = 6.30.1;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = NO;
OTHER_CFLAGS = (
"-fembed-bitcode",
"-DTARGET_OS_IPHONE",
);
PRODUCT_BUNDLE_IDENTIFIER = com.ramseysolutions.BugsnagBinding;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 5.0;
VALID_ARCHS = "x86_64 armv7 arm64";
PRODUCT_BUNDLE_IDENTIFIER = com.ramseysolutions.BugsnagBinding;
};
name = Release;
};
Expand Down Expand Up @@ -1148,13 +1149,15 @@
GCC_WARN_UNUSED_VARIABLE = YES;
GENERATE_INFOPLIST_FILE = YES;
HEADER_SEARCH_PATHS = "$(SRCROOT)/Bugsnag/include/";
MARKETING_VERSION = 6.30.1;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = NO;
OTHER_CFLAGS = (
"-fembed-bitcode-marker",
"-DTARGET_OS_IPHONE",
);
PRODUCT_BUNDLE_IDENTIFIER = com.ramseysolutions.BugsnagBinding;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
Expand Down

0 comments on commit f7d90a6

Please sign in to comment.