Hi,
i have an issue regarding adhoc instalation, my colleague ask me to archive and distribute using adhoc since our client asking for using firebase to distribute the ipa and apk (we have android application too).
he said there is an issue while install the application, i dont know the detail but when i try to install the ipa in my device using device and simulators, its only show unable to install without any detail information regarding the reason, i try to compile and run from the xcode the application running fine, is there any way to solve this issue? or at least how do i log this issue so i know what is the problem in my case?
Best Regards,
Eka
for the notes, i am also use run script for archive since without using the this run script always failed when distributing
i have an issue regarding adhoc instalation, my colleague ask me to archive and distribute using adhoc since our client asking for using firebase to distribute the ipa and apk (we have android application too).
he said there is an issue while install the application, i dont know the detail but when i try to install the ipa in my device using device and simulators, its only show unable to install without any detail information regarding the reason, i try to compile and run from the xcode the application running fine, is there any way to solve this issue? or at least how do i log this issue so i know what is the problem in my case?
Best Regards,
Eka
for the notes, i am also use run script for archive since without using the this run script always failed when distributing
Code Block # Type a script or drag a script file from your workspace to insert its path. # skip if we run in debug if [ "$CONFIGURATION" == "Debug" ]; then echo "Skip frameworks cleaning in debug version" exit 0 fi 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