Remove the override of Xcode project codesign config
This commit is contained in:
parent
97357c064b
commit
50a3c9159b
|
@ -88,12 +88,6 @@ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE
|
|||
// Warns about potentially unreachable code.
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES
|
||||
|
||||
// The path to a file specifying code-signing entitlements.
|
||||
CODE_SIGN_ENTITLEMENTS =
|
||||
|
||||
// The name, also known as the *common name*, of a valid code-signing certificate in a keychain within your keychain path. A missing or invalid certificate will cause a build error.
|
||||
CODE_SIGN_IDENTITY =
|
||||
|
||||
// This setting defines the current version of the project. The value must be a integer or floating point number, such as `57` or `365.8`.
|
||||
CURRENT_PROJECT_VERSION = 1
|
||||
|
||||
|
@ -197,9 +191,6 @@ PRODUCT_BUNDLE_IDENTIFIER = $(PRODUCT_BUNDLE_IDENTIFIER_PREFIX).${PRODUCT_NAME:r
|
|||
// This is the basename of the product generated by the target.
|
||||
PRODUCT_NAME = $(TARGET_NAME)
|
||||
|
||||
// Must contain a profile name (or UUID). A missing or invalid profile will cause a build error. Use in conjunction with [DEVELOPMENT_TEAM] to fully specify provisioning profile.
|
||||
PROVISIONING_PROFILE_SPECIFIER =
|
||||
|
||||
// Activating this setting will cause Xcode to run the `Clang` static analysis tool on qualifying source files during every build.
|
||||
RUN_CLANG_STATIC_ANALYZER = YES
|
||||
|
||||
|
|
|
@ -1342,7 +1342,6 @@
|
|||
326CA50D22BA14EF0033A92F /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Debug;
|
||||
|
@ -1350,7 +1349,6 @@
|
|||
326CA50E22BA14EF0033A92F /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Release;
|
||||
|
|
|
@ -38,5 +38,5 @@ do
|
|||
done
|
||||
|
||||
# Combine XCFramework
|
||||
echo "Create XCFramework"
|
||||
xcodebuild -create-xcframework $COMMAND_ARGS -output "${SRCROOT}/build/SDWebImage.xcframework"
|
||||
open -a Finder "${SRCROOT}/build/SDWebImage.xcframework"
|
||||
|
|
Loading…
Reference in New Issue