samples/calculator: fix building for iOS simulator with Xcode 12

Remove VALID_ARCHS from Xcode project, it caused the problem and its use is discouraged:
https://developer.apple.com/documentation/xcode-release-notes/xcode-12-release-notes
This commit is contained in:
Svyatoslav Scherbina
2020-09-28 12:42:49 +03:00
committed by SvyatoslavScherbina
parent a3a1b7dc9b
commit b134b042bd
@@ -404,7 +404,6 @@
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 4.0;
TARGETED_DEVICE_FAMILY = "1,2";
VALID_ARCHS = arm64;
};
name = Debug;
};
@@ -423,7 +422,6 @@
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 4.0;
TARGETED_DEVICE_FAMILY = "1,2";
VALID_ARCHS = arm64;
};
name = Release;
};