Search results for

dsym file

75,590 results found

Post

Replies

Boosts

Views

Activity

Reply to Lots of warnings when building with Xcode 7 with 3rd party libraries
I think different libraries have different issues but here's what I discovered for my scenario:It seems dSYM was having trouble with parentheses in my project folder path name. Once I renamed the project folder and removed the parentheses, the warnings went away. i.e. the original project folder name was My Project (test). After taking out the parentheses it compiled without warnings (even after a full clean).Maybe this information will help someone else.
Oct ’15
"Files App" Hidden Files
I have a user who is looking at the Files App/On My iPhone folder for my app, and the Files App says that the folder contains 4 files. However, when the user taps on the folder for my app, only 1 file is shown. I assume this means that there are 3 hidden files. I want to find a way for my user to unhide these files, as it is critical for me to help her with her data issue. Some of the files may be .sqlite, .sqlite-wal and/or .sqlite-shm files. Another file may be a random one created by facebook. I thought that having the user install Dropbox on her device would make the files show up, since practically any file can be saved to Dropbox; but that was not the case. What can I do to help the user get all of the files to show in the Files App? I am in desperate need of help on this one.
0
0
3.3k
Sep ’18
Choose the file directory of my files
Hello everyone, I have a problem. For using my app, many files must be reading ( 3 json files ) and at the end of the app theses files are updated. When I read my files, the directory changes any reboots. So, I decided use url from my Desktop, but when I simulate app on my phone, the app crashes because the Desktop isn't on my phone, and on the phone of the future user. So my question is is it posible to have the same directory any reboots ? And if is not, how I can manage my file for avoid this problem ? Thanks everyone
1
0
631
Dec ’21
Reply to Symbolicating crash report pointing to some wrong method
Your example crash is mapping the wrong method name due to the extremely short length of your example function, for example: void InternalCppClass::crashAppWithAbort() { abort(); } Due to how the addresses are mapped between the addresses recorded at the time of the crash and then the addresses in the dSYM symbol table, you can wind up with atos returning the address of a neighboring function in the symbol table for extremely short functions. I'm emphasizing the function length here, as from a pragmatic point of view, this is relatively rare to encounter such a short function in real world code bases that you will run into this often. If you're inquiring because you're worried about making sure your crash reports are accurate, this really only appears in this scenario. Further, if you do wind up in this scenario, it's likely the real function you're looking for is the immediate neighbor above or below the short function in the same source code file. We're already tracking this as a bug inter
Jul ’24
Reply to Appstore Deployment keeps Failing(Sealed Resource missing or invalid)
Hi, I'm having the same issue compiling with LibGDX and RoboVM. I don't have any file with weird characters. Can you help me with this problem? ERROR ITMS-90035: Invalid Signature. A sealed resource is missing or invalid. The file at path [IOSLauncher.app/IOSLauncher] is not properly signed. Make sure you have signed your application with a distribution certificate, not an ad hoc certificate or a development certificate. Verify that the code signing settings in Xcode are correct at the target level (which override any values at the project level). Additionally, make sure the bundle you are uploading was built using a Release target in Xcode, not a Simulator target. If you are certain your code signing settings are correct, choose Clean All in Xcode, delete the build directory in the Finder, and rebuild your release target. For more information, please consult https://developer.apple.com/library/ios/documentation/Security/Conceptual/CodeSigningGuide/Introduction/Introduction.html EDITED: Afte
Sep ’20
Reply to Privacy manifests: how to identify which pod a category use is originating from?
I didn't understand what @Sisky_RO meant by using a link map to track down a use of a particular API. So I went about it another way... Quit Xcode Clear your DerivedData folder rm -rf ~/Library/Developer/Xcode/DerivedData Launch your project in Xcode Wait for dependencies to resolve and build the app (I don't use React Native, but presumably you have another way to do this than in Xcode) Find the offending API(s) My email said I need to address this one: NSPrivacyAccessedAPICategorySystemBootTime I found some documentation, which provides the names of the two calls that will require this privacy configuration: https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api#4278394 For me, the two uses are: systemUptime and mach_absolute_time() Search for calls. For example: grep -RHn systemUptime ~/Library/Developer/Xcode/DerivedData A lot of results were returned, so I didn't include everything. The interesting results I found were within a SourcePackage
Apr ’24
File extensions on NScoding files
I am using NSCoding to perisistently store my custom objects in the Application Support folder within the Library folder. Is it best practice to use file extensions in this case? The user will never see these files. Currently I am not using file extensions, but wonder if I am going to regret this later. I do have several different custom object types, but they are in separate folders and the directory paths are handled by my data controllers and an extension to NSFileManager.
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
115
Jul ’15
Reply to Instruments/Allocations inconsistent object counts when drilling down
Regarding Instruments:It may not be an error, but the options for the top level summary may (in effect) be different from those for your detail view. The top level might be including all objects ever created and/or destroyed, while the detail might only be show objects still in existence at a certain time.If you can't find an explanation, or if there might be an explanation but you think it's too confusing, then submit a bug report and attach your Instruments document.Regarding dSYMs:>> if lldb can do it, you can too!Actually, it's always lldb, not Xcode. Xcode uses lldb as its interface to debugging generally.As to missing debug information, it's a bit complicated. In a release build, all debugging information has been moved to a dSYM, and the executable contains nothing to help debugging, except module names and global symbols.In a debug build, the debug information (last I heard) can be spread around multiple locations, according to the technical needs of various binary format stand
May ’16
input type="file" uploading a file converts the file and uploads the file with size 0
Hi We are using angularjs in our application and using input type=file for uploading a document in the user's profile.The issu is that if the time difference between choosing the file and uploading the file is more than 30 seconds (roughly), then the file details are lost and it is consequesntly stored as an empty document in the database.directive('fileModelApply', ['$parse', function ($parse) { return { restrict: 'A', link : function (scope, element, attrs) { var model = $parse(attrs.fileModelApply); var modelSetter = model.assign; element.bind('change', function () { scope.$apply(function () { modelSetter(scope, element[0].files[0]); }); }); } }; }])We are using the given directive for the part where user chooses the file.Please let us know if there i any way we can resolve this problem.
2
0
1.6k
May ’20
Reply to Why does my app crash on launch?
I would appreciate any suggestions as to how to fully symbolicate the crash report so I know where to focus my attention. I don’t have much to add per the discussion in Adding Identifiable Symbol Names to a Crash Report. That is: Look in the crash report to get the UUID of the problematic Mach-O image. Confirm that you have a .dSYM that matches that UUID. Confirm that mdfind can find it. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Dec ’22
App Store Review Crash
Hello everyone, This is my first time creating an iOS app. The app was made using Flutter. After submitting to the app store the review team rejected the app saying that it crashed at launch during the testing process. I tried symbolicating the crash log file they sent in attachment although it was only partially symbolicated as i couldn't locate the appropriate dSYM files. I need help in understanding the cause of the crash. The app ran fine when testing on my device. The crash log i tried symbolicating can be found in attachment crashlog.crash - https://developer.apple.com/forums/content/attachment/799bdf9b-501e-4d8f-8773-194001eb706a
0
0
574
Dec ’20
The File’s Owner object of a NIB file
I have a few questions regarding the proxy objects of a NIB file, specifically in regards to the File's Owner object. The File's Owner object is a placeholder instance which represents some instance of a class outside the NIB file that will soon substitute this tentative instance. From what I understand, NIB files and XIB files are lazy loaded. Does this mean the placeholder instance (before it is substituted by the real class's instance) is already an instance (not a type) even before the NIB files are called? What is this placeholder instance an instance of? The File's Owner object is configured with a custom class, say ViewController. Why do you have to specify the owner again when you load this NIB file? Bundle.main.loadNibNamed(SomeNIBFile, owner: self )
13
0
3.4k
Oct ’20
Xcode - organizer not showing crashes
Hey!I am having problems with Xcode, I am unable to view the error reports for our app. It works for one of the guys on my team, and we have the exactly same itunesconnect permissions. And it only works for him. Not for anyone else.When I try to download the dSYMs files for our latest release in the organizer, I get an error showing that we need to accept the updated Apple Developer Program License Agreement. We have checked multiple times that those are accepted.Are these problems related? And how can I solve them?Xcode Version 8.3.3 (8E3004b)MacBook Pro (Retina, 15-inch, Mid 2015), version 10.12.5 (16F73)Sincerely,Samuel
24
0
26k
Jul ’17