Search results for

dsym file

77,666 results found

Post

Replies

Boosts

Views

Activity

Reply to UIWebView
In all instances I’m aware of, apps that are getting the UIWebView usage warning are in fact linking to the UIWebView framework. It may be in third party libraries or frameworks. Please check again what your app and its libraries link against. You can do so by running the grep command in Terminal. For example, Open Terminal Type the following on the command line to change to the directory where your application binary is: cd ~/Library/Developer/Xcode/Archives/<date of your archive>/<your archive> 3. To search for UIWebView use the following command: grep -R UIWebView * This should give you a list of files that contain a reference to UIWebView. From that list you should then be able to determine where the UIWebView reference is. To make this a bit more concrete, the other day I created a test app named SingleViewApp and archived it, so this is what I did to check for the UIWebView: % cd ~/Library/Developer/Xcode/Archives/ % ls 2019-08-26 2020-03-09 % cd 2020-03-09 % ls SingleViewApp 3-9-20
Topic: UI Frameworks SubTopic: UIKit Tags:
Aug ’20
Reply to Symbolicating Crashes for Applications Submitted with Bitcode
Hi Apple,Our bitcode enabled app with symbols uploaded does not symbolicate either.Note that downloading dSYMs only shows 2 different versions for each binary object. I don't know how many different versions the App Store is generating, but the UUIDs in the dSYMs don't match any of the crash log UUIDs...Kind of painful debugging without symbolication.
Mar ’16
[App Rejected - iPad13,16 crash] How to symbolicate crash files without XCode
Hello, I recently received a rejection submitting an app because of a crash on iPad13,16. I have tested the app with xcrun simctl on the following device iPad model: iPad Air (5th generation) (27BB2DC4-D599-4EF8-96A9-7E527337F95D) and I am not able to reproduce the crash. In order to proceed fixing the issue, I would like to symbolicate the crash files sent by the validation team. The thing is, the app has been created with React Native on VS Code, thus, I am not able to import it on XCode to proceed to the crash file symbolication nor to generate the dSYM file in order to use the atos command line tool. I would like to know if you have any suggestion so I can move on fixing the crash and publish the app as soon as possible please? Thank you crashlog-DFBDCF7C-6849-474B-B0A6-F16D182FBAA3.txt
2
0
1.2k
Aug ’23
Is there a new dsymutil malloc bug in Xcode 7? Are dsyms necessary anymore?
Due to requirements of my product, I'm running xcodebuild from within a Mac OS X Cocoa app via an NSTask.The NSTask is executing bin/sh with -c, which then executes the xcodebuild command.Whenever I build for a device target, I get the following build failure:dsymutil(15617,0x7fff78da9300) malloc: *** error for object 0x6100000e0380: pointer being freed was not allocated*** set a breakpoint in malloc_error_break to debugCommand /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil failed with exit code 6Strangely enough, the very same command when run on the command line finishes without any error. This seems like a bug. Can anyone provide any insight on this?Do we need to be building apps with dSYMs anymore, given the new bitcode initiative?
13
0
3.9k
Sep ’15
Reply to Upload dSYM to Firebase using run script
I had the same issue and resolved it by addingsleep 0.5at the beginning of my upload DSYMs script phase.It seems that the dSYM path couldn't be resolved when the upload command runs too early.Depending on how fast your Mac is you may need to sleep a little longer.Edit: This was working fine on my iMac, unfortunately it still doesn't work on my Macbook Air even after increasing to 3 seconds :/
Mar ’20
Reply to DSYMs No Longer Offered for Download?
I found that even Debug Information set to DWARF with dSYM but bitcode disabled (Not included) when upload to AppStore button download dSYM will missing. My problem when using Xcode 13 after Product > Archive and upload to AppStore, checkmark Include bitcode for iOS content is greyed out. If I clicked button next in review dialog show Bitcode: Not included -> No download button. But if I switch back archive using Xcode 12, Include bitcode for iOS content isn't greyed out. Then I clicked button next show Bitcode is Included -> so button download dSYM not missing. Hope this help.
Jan ’22