mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-02 00:17:02 +00:00
1.1 KiB
1.1 KiB
Troubleshooting
This is a checklist to help find the issue if crashes do not appear in HockeyApp:
- Check if the
BETA_IDENTIFIER
orLIVE_IDENTIFIER
matches the App ID in HockeyApp. - Check if CFBundleIdentifier in your Info.plist matches the Bundle Identifier of the app in HockeyApp. HockeyApp accepts crashes only if both the App ID and the Bundle Identifier equal their corresponding values in your plist and source code.
- Unless you have set
[BITCrashManager setCrashManagerStatus:]
toBITCrashManagerStatusAutoSubmit
: If your app crashes and you start it again, is the alert shown which asks the user to send the crash report? If not, please crash your app again, then connect the debugger and set a break point inBITCrashManager.m
, methodstartManager
to see why the alert is not shown. - Check if the code is really executed by adding an
NSLog
statement. - If you are using
#ifdef (CONFIGURATION_something)
, make sure that thesomething
string matches the exact name of your Xcode build configuration. Spaces are not allowed! - If it still does not work, please contact us.