Search results for

dsym file

77,666 results found

Post

Replies

Boosts

Views

Activity

Reply to Missing (or invalid) dSYMs
Same issue here. It seems as if appstoreconnect currently attributes incorrect UUIDs to dsyms generated from bitcode enabled build archives. One way to solve this (and the only one I know of) is to rename the internal UUID of the dsym that corresponds to the binary image of the stack frame that isn't symbolicated. In most cases this is your app's binary image. What you can do is either manually rename it using the already mentioned excellent article on medium, or automatically using the following tool: https://github.com/schmittsfn/dsymrename You have to be absolutely sure, however, that the dsym you are renaming corresponds to the build Crashlytics is requesting (for bitcode builds these are the dsyms generated on appstoreconnect)! Failure to do so will most likely lead to the warning on Crashlytics being silenced and the stack frame being unintelligible.
Aug ’21
Reply to dSYM Files for Firebase not generating
I have a similar problem as described in this thread. When building a Debug version my dSYMs all generate correctly and work properly with Firebase Crashlytics. However when I perform a Release Build there is a problem with the generation. In my archive one of the files is missing, specifically the app.debug.dylib file. I verifed the debug format, changed Strip settings, etc without any fix. Any ideas of how to solve this problem?
Jun ’25
Reply to ITMS-90809: Deprecated API Usage (New vs. Updates)
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// 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, 11.38 AM.xcarchive SingleViewApp 3-9-20, 11.41 A
Aug ’20
Reply to Regards UIWebView Deprecation
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// 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, 11.38 AM.xcarchive SingleViewApp 3-9-20, 11.41 A
Topic: UI Frameworks SubTopic: UIKit Tags:
Aug ’20
Reply to ASC Doesn't generate DSYM file
For everybody who need quick fix... I fix this problem with this solution: Open Organizer in XCode menu - menu>window>organizer Select your IPA build and with right mouse click select show in finder On generated file with right mouse click select show package content Comprim DSYM directory to .zip file and move him outside the package for use tham, where you need it. Enjoy ;)
Jan ’23
Reply to Regarding UIWebView rejection
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// 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, 11.38 AM.xcarchive SingleViewApp 3-9-20, 11.41 A
Aug ’20
bitcode symbolication - recompilation notification
So, for bitcode enabled applications, the final compilation happens on the Apple side. This means to symbolicate crash reports, dsym files generated by Apple need to be downloaded (they have different build uuids obviously than the ones of the local builds). It is also stated that enabling bitcode will let Apple to reoptimize the apps in the future without the need to resubmit our apps to Apple. Does this mean that a rebuild of the app can happen anytime on the Apple side? The problem is that after every build, the corresponding dsym files need to be downloaded from Apple to symboliate the crash reports.If rebuilds happen, how frequent are they? Does Apple notify the developer that a rebuild happened? Do we need a script to periodically fetch the dsym files and check whether they have changed?Thanks
1
0
528
Oct ’16
"Download dSYM" option not available on appstore connect for the latest build
I updated two of my apps recently, but none of them is showing Download dSYM option in the Build metadata section. Although it's available for the earlier versions of same apps. No change has been made to the build settings for the latest builds. Bitcode is enabled. Also, Include Symbols is set to yes in the build metadata. Is there any solution to fix this problem?
3
0
811
Feb ’22
Reply to kernel debug kit KDK_12.1_21C52
This is caused by Python version mismatch between LLDB and scripts inside kernel's dSYM. Python scripts inside your dSYM require Python 2 but Python 2 support has been removed from newer LLDBs. To solve the problem you will have to install older LLDB/Xcode that still has Python 2 support.
Topic: App & System Services SubTopic: Core OS Tags:
Apr ’22