You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Guys, help me. I have something issues when try to submit to apple store. All works fine in Debug. I face Architetures problems before, but fix it with this script:
APP_PATH="${TARGET_BUILD_DIR}/${WRAPPER_NAME}"
# This script loops through the frameworks embedded in the application and
# removes unused architectures.
find "$APP_PATH" -name '*.framework' -type d | while read -r FRAMEWORK
do
FRAMEWORK_EXECUTABLE_NAME=$(defaults read "$FRAMEWORK/Info.plist" CFBundleExecutable)
FRAMEWORK_EXECUTABLE_PATH="$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME"
echo "Executable is $FRAMEWORK_EXECUTABLE_PATH"
EXTRACTED_ARCHS=()
for ARCH in $ARCHS
do
echo "Extracting $ARCH from $FRAMEWORK_EXECUTABLE_NAME"
lipo -extract "$ARCH" "$FRAMEWORK_EXECUTABLE_PATH" -o "$FRAMEWORK_EXECUTABLE_PATH-$ARCH"
EXTRACTED_ARCHS+=("$FRAMEWORK_EXECUTABLE_PATH-$ARCH")
done
echo "Merging extracted architectures: ${ARCHS}"
lipo -o "$FRAMEWORK_EXECUTABLE_PATH-merged" -create "${EXTRACTED_ARCHS[@]}"
rm "${EXTRACTED_ARCHS[@]}"
echo "Replacing original executable with thinned version"
rm "$FRAMEWORK_EXECUTABLE_PATH"
mv "$FRAMEWORK_EXECUTABLE_PATH-merged" "$FRAMEWORK_EXECUTABLE_PATH"
done
But now on Swift 3 i have this troubles. I try to fix then but with no success .Here a print from my problems.
Thanks!
The text was updated successfully, but these errors were encountered:
Can you please tell us how are you using the framework? Are you using the provided framework inside the "CompiledLibrary" folder or are you building it by yourself?
Hi. Yes. I decide to use other framework right now, based on cocoapods. But im was using "CompiledLibrary" folder.Im getting a lot of errors with the Apple submit and i dont know why.I hope that you build a Cocoapod library as soon,your framework works well.
Guys, help me. I have something issues when try to submit to apple store. All works fine in Debug. I face Architetures problems before, but fix it with this script:
But now on Swift 3 i have this troubles. I try to fix then but with no success .Here a print from my problems.
Thanks!
The text was updated successfully, but these errors were encountered: