Questions tagged [hockeyapp]

HockeyApp is a cloud-hosted solution for the collection of real-time crash reports and user feedback, as well as beta app distribution for iOS and Android.

HockeyApp is a way to

  • Collect beta and production crash reports
  • Get feedback from users
  • Distribute beta builds to testers

HockeyApp offers one of the most reliable and complete crash reporting for beta and App Store versions using open source frameworks. Providing full server-side symbolization with class names, methods, line numbers, and automatic grouping of similar crash reports.

Crash reports appear in real-time with fully symbolicated stack traces. Crash reports can be sent automatically or with user interaction, add custom meta data or log files, and inspect the SDK's code for further customization and security audits.

HockeyApp comes in a form of open source SDK and supports , , , or .

You should use this tag if your question is related to the use of HockeyApp or any services provided by this platform.

296 questions
3
votes
2 answers

How to Configure HockeyApp in Swift 3 ios

I have configured Hockey App SDK with iOS. But the problem is nothing showing on my Hockey App server. ` BITHockeyManager.shared().configure(withIdentifier: "HOCKEYID") BITHockeyManager.shared().crashManager.crashManagerStatus =…
shohan rahman
  • 43
  • 1
  • 7
3
votes
0 answers

Want to download the .APK build from Hockey APP through Jenkins, to run tests on the downloaded .APK build

I want to trigger a build in jenkins whenever a new build is uploaded on hockeyapp. I need to download the new apk in my automation project and run the automated testcases. The apk will be generated from a separate development project. Via HockeyApp…
3
votes
2 answers

Gitlab Continuous Delivery options

I'm iOS developer and I've been playing with Gitlab lately trying to figure out if it's better/more convenient than redmine+jenkins+HockeyApp. Gitlab seems to be quite cool except for I cannot figure out how to upload my ad-hoc iOS build to…
3
votes
1 answer

No HockeyApp crash reports when using Firebase and HockeyApp simultaneously

In our iOS app we use the HockeyApp SDK and Firebase SDK. We initialize both in AppDelegate directly at startup: func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { …
Philipp Otto
  • 4,061
  • 2
  • 32
  • 49
3
votes
1 answer

Pipeline script to upload build(apk) to hockeyApp

I am using Jenkins to build my android app. i added "Jenkinsfile" in my repo and my current pipeline script looks like this and it is working fine. node { try { stage("build.clone") { checkout scm …
SAIR
  • 1,121
  • 11
  • 31
3
votes
2 answers

iOS App compiles but XCode 8.1 beta gives error message saying "Module 'HockeySDK' not found"

My iOS App compiles but XCode gives error message saying "Module 'HockeySDK' not found". I added HockeySDK both using cocoapods. Unfortunately when I build and run the app runs but XCode gives me the error mentioned above. It looks like this: This…
mm24
  • 9,280
  • 12
  • 75
  • 170
3
votes
0 answers

Send handled exception reports to HockeyApp

I have a WPF app, integrated with HockeyApps, the crash report is working perfectly. Now I need to report handled crashes, I did as following but it's not sending crashes to HockeyApp dashboard: try { // something that crashes! } catch (Exception…
AVEbrahimi
  • 17,993
  • 23
  • 107
  • 210
3
votes
0 answers

"Selector name found in current argument registers:", What does it mean?

I am monitoring my App using HockeyApp, I can see the following CrashGroups in my HockeyApp Panel. Crash Group: Exception Type: SIGSEGV Exception Codes: SEGV_ACCERR at 0x20 Crashed Thread: 0 main "Selector name found in current argument…
arango_86
  • 4,236
  • 4
  • 40
  • 46
3
votes
0 answers

Unknown crash reason "nativePollOnce"

I've had moderate success with using HockeyApp to monitor exceptions and crashes for the most part but for those situations that don't report any C# code is when I have a hard time. Both the following crashes have the same crash log: But Google…
Diogo Mendonça
  • 357
  • 1
  • 6
  • 19
3
votes
1 answer

HockeyApp crashes on back button press on Windows Phone

HockeyApp crashes on pressing back button when it prompts on app launch and asks for sending/deleting crash logs. A NullReferenceException occurs inside HockeyApp; the stacktrace is attached. The platform is Windows Phone 8.1 RT and HockeyApp…
nimbudew
  • 958
  • 11
  • 28
3
votes
1 answer

How to upload a Changelog in Jenkins as Release notes of Hockey app

I want to upload changelog as part of the Input Release Notes field. Is there an environment variable or something like that so that I can put it in as part of my inputted release note? Can you guys please suggest how we could do it.
Lakshmi Reddy
  • 313
  • 5
  • 17
3
votes
1 answer

Add custom information to HockeyApp crash report

I integrated my iOS app with HockeyApp platform. Everything works properly, but I need to add some extra information, like texts from NSLog, to crash reports. It is possible? I don't want to use external frameworks (NSLogger, CocoaLumberjack),…
piowes86
  • 31
  • 4
3
votes
1 answer

Send handled Exception report using HockeyApp(Windows)

I am trying to Send Error reports with hockeyapp without having to let the whole app crash and burn. I dont think the HockeyApp.WPF library has this capability, so I started to mess around with implementing my own CrashHandler. This quickly got…
BillHaggerty
  • 6,157
  • 10
  • 35
  • 68
3
votes
2 answers

Can we use both Apple iOS8 Testflight and HockeyApp for the same app?

Our team recently switched from old-style Testflight to the new iOS8 Apple Testflight. Unfortunately, when we made the switch we didn't realize that beta testers had to be on iOS8 to install betas. Unfortunately, we have many users stuck on iOS6…
Justin Grant
  • 44,807
  • 15
  • 124
  • 208
3
votes
1 answer

How to integrate hockey App with Hybrid mobile app

I am trying to integrate my Hybrid Mobile App (Inonic + Cordova) with hockey App but the problem is Hockey App is support Native apps (According to my info). So is there any guide available for that? Hybrid App integration with Hockey app. When I…
Muhammad Faizan Khan
  • 10,013
  • 18
  • 97
  • 186
1 2
3
19 20