Nikolay Volosatov

Results 25 comments of Nikolay Volosatov

There is an another solution for manual processing of crash reports: ```objc // Filter for Apple format text representation of a crash report KSCrashReportFilterAppleFmt *filter = [[KSCrashReportFilterAppleFmt alloc] initWithReportStyle:KSAppleReportStyleSymbolicatedSideBySide]; //...

There are many algorithms that can check if two or more crashes are related to the same problem. It depends on what do you call "the same". One of the...

We've created a PR implementing dynamic hook mentioned above by @huakucha: #375

Let's merge to `master` and update `release-2.0` from it

It looks like a first part of a crash-report. Are you sure it's a full message?

I've solved it by adding these lines into Podfile: ```ruby post_install do |installer| installer.pods_project.targets.each do |target| if target.name == 'FMDB' target.build_configurations.each do |config| config.build_settings['CLANG_WARN_UNGUARDED_AVAILABILITY'] = 'NO' end end end end...

Looks like the problem can be solved with `spec.header_dir = 'FMDB'` in podspec. https://guides.cocoapods.org/syntax/podspec.html#header_dir

@dimmduh is right. We faced the same problem right before the latest release and could do nothing with it. Until it is fixed in future release of Unity itself you...

You're right. Temporary solution is to cover all `PostprocessBuildPlayerAppMetrica.cs` with: ```csharp #if UNITY_IPHONE // Actual PostprocessBuildPlayerAppMetrica.cs content #endif ```

Yes, thank you. I'll fix it later. There are no posibilities to migrate DB now.