-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
appstore submission error해결을 위한 script file 추가
- Loading branch information
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
################################################################################ | ||
# | ||
# Copyright 2015 Realm Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
################################################################################ | ||
|
||
# This script strips all non-valid architectures from dynamic libraries in | ||
# the application's `Frameworks` directory. | ||
# | ||
# The following environment variables are required: | ||
# | ||
# BUILT_PRODUCTS_DIR | ||
# FRAMEWORKS_FOLDER_PATH | ||
# VALID_ARCHS | ||
# EXPANDED_CODE_SIGN_IDENTITY | ||
|
||
|
||
# Signs a framework with the provided identity | ||
code_sign() { | ||
# Use the current code_sign_identitiy | ||
echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" | ||
echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1" | ||
/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" | ||
} | ||
|
||
# Set working directory to product’s embedded frameworks | ||
cd "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}" | ||
|
||
if [ "$ACTION" = "install" ]; then | ||
echo "Copy .bcsymbolmap files to .xcarchive" | ||
find . -name '*.bcsymbolmap' -type f -exec mv {} "${CONFIGURATION_BUILD_DIR}" \; | ||
else | ||
# Delete *.bcsymbolmap files from framework bundle unless archiving | ||
find . -name '*.bcsymbolmap' -type f -exec rm -rf "{}" +\; | ||
fi | ||
|
||
echo "Stripping frameworks" | ||
|
||
for file in $(find . -type f -perm +111); do | ||
# Skip non-dynamic libraries | ||
if ! [[ "$(file "$file")" == *"dynamically linked shared library"* ]]; then | ||
continue | ||
fi | ||
# Get architectures for current file | ||
archs="$(lipo -info "${file}" | rev | cut -d ':' -f1 | rev)" | ||
stripped="" | ||
for arch in $archs; do | ||
if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then | ||
# Strip non-valid architectures in-place | ||
lipo -remove "$arch" -output "$file" "$file" || exit 1 | ||
stripped="$stripped $arch" | ||
fi | ||
done | ||
if [[ "$stripped" != "" ]]; then | ||
echo "Stripped $file of architectures:$stripped" | ||
if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then | ||
code_sign "${file}" | ||
fi | ||
fi | ||
done |