Skip to content

Commit

Permalink
remove armv7s from build architectures
Browse files Browse the repository at this point in the history
This is causing a build failure in Xcode 14 since armv7s is deprecated
  • Loading branch information
emawby committed Oct 13, 2022
1 parent 491902f commit bbde937
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions iOS_SDK/OneSignalSDK/OneSignal.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2701,7 +2701,6 @@
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = (
"$(ARCHS_STANDARD)",
armv7s,
x86_64h,
x86_64,
);
Expand Down Expand Up @@ -2765,6 +2764,11 @@
CA2951B82167F4120064227A /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = (
"$(ARCHS_STANDARD)",
x86_64h,
x86_64,
);
CLANG_ANALYZER_NONNULL = YES;
CLANG_ENABLE_CODE_COVERAGE = NO;
CLANG_ENABLE_MODULES = YES;
Expand Down Expand Up @@ -2859,7 +2863,6 @@
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = (
"$(ARCHS_STANDARD)",
armv7s,
x86_64h,
x86_64,
);
Expand Down Expand Up @@ -2923,6 +2926,11 @@
CA2951C42167FB950064227A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = (
"$(ARCHS_STANDARD)",
x86_64h,
x86_64,
);
CLANG_ANALYZER_NONNULL = YES;
CLANG_ENABLE_CODE_COVERAGE = NO;
CLANG_ENABLE_MODULES = YES;
Expand Down Expand Up @@ -3016,6 +3024,11 @@
isa = XCBuildConfiguration;
buildSettings = {
APPLICATION_EXTENSION_API_ONLY = YES;
ARCHS = (
"$(ARCHS_STANDARD)",
x86_64h,
x86_64,
);
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
Expand Down Expand Up @@ -3072,6 +3085,11 @@
isa = XCBuildConfiguration;
buildSettings = {
APPLICATION_EXTENSION_API_ONLY = YES;
ARCHS = (
"$(ARCHS_STANDARD)",
x86_64h,
x86_64,
);
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
Expand Down

0 comments on commit bbde937

Please sign in to comment.