Search results for

dsym file

75,597 results found

Post

Replies

Boosts

Views

Activity

Reply to Swift EXC_BREAKPOINT crash: "_TTSf4s_s_d_d___TFs18_fatalErrorMessageFTVs12StaticStringS_S_Su_T_"
This EXC_BREAKPOINT crash is something that Swift uses when it wants to crash your app deliberately. The last method name is clearly a mangled name, but it's a pretty good guess that it's a result of your app calling 'fatalError' to crash itself. (It could have been library code, though, rather than a fatalError call you wrote.)Since you're not getting line numbers, that suggests this is a release build of your app, without built-in debug information. In a release build, fatalError doesn't display its error message before crashing.So you have a couple of choices. One is to find the dSYM (debug information) file that Xcode produced when you built the release build for distribution, and symbolicate the crash to find out the last line of your code that executed. Or, investigate the crash using a debug build (reproduce the problem in Xcode, or give a debug build to your tester if you can't reproduce the problem.), and you'll get additional information.
Topic: Programming Languages SubTopic: Swift Tags:
Sep ’16
Files
FILES app is not showing in tunes -->Apps --> file sharing on itunes latest software on windows computer ! How to transfer data from computer to device as folder with sub folders & multiple file format ?
1
0
353
Jun ’17
Reply to Xcode 12 beta 3 – XCFrameworks and debug symbols
Thanks for solution, @Svantulden. Using your approach, I was able to generate XCFramework. Unfortunately, there are issues with archiving project which uses such XCFramework. Archiving itself does not fail, but it produces corrupted XCArchive, which is not possible to open in Xcode or export via command-line (it fails with archive at path is malformed message). This is my solution based on approach used by PSPDFKit. Hope it can help somebody. #!/bin/bash WORKSPACE=MY_WORKSPACE.xcworkspace SCHEME=MY_SCHEME FRAMEWORK_NAME=MY_FRAMEWORK_NAME IPHONEOS_ARCHIVE_PATH=./build/${FRAMEWORK_NAME}-iphoneos.xcarchive IPHONESIMULATOR_ARCHIVE_PATH=./build/${FRAMEWORK_NAME}-iphonesimulator.xcarchive OUTPUT_PATH=./build/${FRAMEWORK_NAME}.xcframework rm -rf ${OUTPUT_PATH} set -o pipefail Device slice. xcodebuild clean archive workspace ${WORKSPACE} scheme ${SCHEME} configuration Release sdk iphoneos destination 'generic/platform=iOS' archivePath ${IPHONEOS_ARCHIVE_PATH} SKIP_INSTALL=NO BUILD_LIBRARIES_FOR_DISTRIBUTION=YE
Apr ’21
Files App does not delete Files
Maybe you guys got an idea. I think there is a bug in iPadOS 14.4. When deleting a file in the on my ipad part of the files app, the file is no longer visable, but the used diskspace is not free again. Also the file does not show up in the recently deleted tab. Repeating this, fills up the storage. Any idea on how to get the diskspace back?
0
0
304
Mar ’21
How to access files in files app in "On My iPhone"
Hi there, I am trying to write an app that accesses zip files that are stored in the On My iPhone folder in the files app. Specifically, I am trying to access a folder named Slopes that has these zip files. Once I have these, I am trying to look at a xml file from the extraction. I've tried the Document-Based app but had no luck as well as FileManager but I'm not sure how to get to the folder. Ideally, it would be great to access these files without the users input to select the folder where the files are. Any help would be extremely appreciated. Thank you in advance! - Matthew
1
0
2k
Jan ’23
92 warnings since I updated xcode
Hello, I was recently using xcode 6.4 and everything was working fine until I updated my xcode I got 92 warnings Unable to open object file:No such file or directory when I tried building my project it has to do with generating the DSYMFile and my amazon ads framework, I did some research and found that going to build settings>build options>debug information format and changingit from DWARF with dSYM File to just DWARF gets rid of the warnings but Im not really sure what affect this will have on my app and if its a recommended solution ? and Im not sure if itunes connect would let me send in this update with this many warnings, thanks very much if any one can help me resolve this it would be greatly appreciated.
0
0
366
Dec ’16
File Provider issue: Files app freezes when I move a file/folder
We are implementing the File Provider Extension for our App and we directly fetch data from server side without local cache. It works fine for most of the situations, but when do the action of move file/folder (call 'reparent' function) the page will freeze forever. You have to kill the Files app and restart to resolve this issue. Does anyone know any possible reason causing this freezing issue?
0
0
351
Sep ’20
Reply to Upload Symbols Failed on Xcode 16
Hello all, We had a similar issue, not sure, whether it caused the same as here. Apple changed the build folder structure For example for dsym in Xcode 16: DerivedData/-cepomayyloydxxdkdabvlloqozfn/Build/Intermediates.noindex/ArchiveIntermediates//BuildProductsPath/ReleaseLite-iphoneos/.app.dSYM In Xcode 15: DerivedData/*-cepomayyloydxxdkdabvlloqozfn/Build/Products/Debug-iphonesimulator/*****.app.dSYM They modified the build settings as well and now for example build_dir is pointing to the app build folder and not to the derived data. Hope that helps
Nov ’24
Reply to UIWebView Deprecated Warning
Hi,I saw reply from KMT yesterday on this and then I replied back as well to KIM, why that conversation is deleted??As we have our customers Apple developer account and they receive an email every time from App Store Connect for this UIWebView deprecation warning which has been already escalated. This time I would like to make sure we are not going to receive the same warning and which is why I just need confirmation from your side.Have also tried creating a separate fresh(without using 3rd party tools/SDK’s/API’s/Pods) sample app which is using WKWebView inside and named it TestWKWebView then archived it, I can still find UIWebView matches in TestWKWebView 07-05-20, 7.18PM.xarchive file post running grep -r UIWebView . command as mentioned below:Binary file ./dSYMs/TestWKWebView.app.dSYM/Contents/Resources/DWARF/TestWKWebView matchesAnd if I go to above path and open TestWKWebView file in TextEdit and search for UIWebView, I could only find strings containing UIWEView like
May ’20
Copy file in application document file to user Documents file
I ave an application that makes use of charts. I would like to have a button for the user to save the chart as a PDF. I tried to have the button save the PDF to the user's document directory directly. That attempt failed. But I was able to save the PDF to the application sandboxed documents directory. The question is how to programmatically move that file from the application documents folder to the user's general documents folder. So far I have not been able to find a method that will move the PDF file. Any ideas?
2
0
298
Aug ’25
Can I run HTML files from the files app?
For example, I have a click through self contained html/javasript website. Could I copy that folder to files and run it in a browser much like on my desktop, I can simply double click index.html (for example), opens Chrome (or safari) and off I go?We currently use the HTML Presenter ios Application to serve up our local html/javascript demos and was hoping to simply use the Files capability.Thanks!-Brent
0
0
603
Sep ’17