crash-reports
How to get iPhone crash log from customers?
You can perform your own crash-logging with PLCrashReporter. Typically, you write the crash log to a file and then send it to a server the next time the app starts. In order to prevent an infinite crash-reporting loop (there was one in an early version), you want to do things in a specific order: Read … Read more
Selector name found in current argument registers: isEqual:
The string Selector name found in current argument registers: isEqual: in the crash report is actually coming from HockeySDK and shows the last selector name objc_msgSend() was trying to call. It is identical to OS X showing the following string in their crash reports: objc_msgSend() selector name: isEqual:. We’ll improve this message in our SDK … Read more
Google Play console reporting crashes from unreleased applications
As we are interested in publishing only release applications, we may adopt following strategy to get rid of messing up crash reports : ./build.gradle : android { … defaultConfig { applicationId “my.app.package” … } … buildTypes { release { … } debug { … applicationIdSuffix “.dev” } } … }