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
2
votes
1 answer

App crashes when launching after updating app via HockeyApp

Here's the CrashReporter information: Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0: 0 libsystem_kernel.dylib 0x347c2848 __kill + 8 1 [My Application] 0x0002ec44 fatal_signal_handler…
wierddemon
  • 223
  • 1
  • 2
  • 10
2
votes
0 answers

In house iOS builds from AppCenter asking to register device

In HockeyApp we always used an Apple Enterprise build (also called In House) to provide a test app to some clients so they could easy test new updates. Now with AppCenter we want to achieve the same, so we compile the build in AppCenter and choose…
2
votes
0 answers

VSTS Build failed when associated with Hockey App

I am trying to associate my UWP App build with the Hockey App but it's getting failed. Below are the configurations I have set: For Build: MSBuild Arguments: /p:AppxBundlePlatforms="$(BuildPlatform)" …
Dishant
  • 1,545
  • 12
  • 29
2
votes
1 answer

VSTS : Unable to upload to HockeyApp

As I'm trying to upload an iPad application (XCode project) to HockeyApp with VSTS's build pipeline, it fails and returns following error message. 2018-07-30T10:37:57.0420460Z ##[error]Error: Failed to upload the package. HTTP status code: 422.…
2
votes
1 answer

Getting error "Version could not be created from build" while deploying WPF app to Hockeyapp via VSTS

Everything works fine when I deploy using Visual Studio "Distribute to HockeyApp" option in VS project. But when I do the same using VSTS HTTP status code: 422. Responce: {"status":"error","message":"Version could not be created from…
2
votes
0 answers

hockeyapp plugin and jenkins pipeline and hockey app URL

I am using a declarative pipeline and in a stage I have a step using Hockey app to upload an APK. It works fine, but I can not seem to get the URL to the HockeyApp version. Supposedly its in an environment var HOCKEYAPP_INSTALL_URL, but alas, it…
2
votes
1 answer

Sending Crash Reports using ONLY HockeyApp tool(Android)

I want to use HockeyApp tool to send an crash report. So I am new to this crash reports. I have looked through these website but nothing get's in my mind.I tried setup as per instruction they have shown. But was unable to receive crash reports in…
opalfire
  • 93
  • 1
  • 9
2
votes
3 answers

How to find out the next buildnumber on Hockeyapp with Fastlane

We use Fastlane for our App build and we want to be able to do a consistent staging build on our CI server or on a local machine. Since we publish all builds on Hockeyapp we thought about retrieving the highest build number for our app from the…
Janusz
  • 187,060
  • 113
  • 301
  • 369
2
votes
1 answer

System.Environment.Exit(0) preventing hockeyapp from registering a crash

I started a blank WPF application (shown below) to implement HockeyApp crash reporting. When the program starts, a window popups up with a single button for the user to press. When the user clicks it the handler attempts to divide by zero and…
2
votes
0 answers

Xamarin.Forms iOS error Selector name found in current argument registers: configureAnimation:forLayer:forKey:

I have been experiencing a problem with my Xamarin Forms application when deploying it on iOS, where it crashes suddenly while I'm using it. I noticed that the crash happens mostly when I'm: working with the multiple pickers (filling some form…
Uentee
  • 783
  • 1
  • 7
  • 15
2
votes
1 answer

Hockeyapp doesnt send any crash report

I had a problem with the latest version of my app, there is no crash report (in hockeyappp panel) at all but I had seen several crashes on my device, I updated SDK and checked this doc and…
Hamid Zandi
  • 2,714
  • 24
  • 32
2
votes
1 answer

How do I reliably capture *all* iOS exceptions in Xamarin?

This link describes how to handle exceptions in iOS Runtime.MarshalManagedException += (object sender, MarshalManagedExceptionEventArgs args) => { Console.WriteLine ("Marshaling managed exception"); Console.WriteLine (" Exception: {0}",…
2
votes
0 answers

Uploading a file with Scala and setting headers

I have been playing around with a file upload to hockey app for quite a while now. I managed to get that thing running by now but I hit the next wall. The headers I have set are not being recognized. You can find the whole code here:…
firegate666
  • 98
  • 1
  • 10
2
votes
2 answers

How to use HockeyApp SDK with Qt on Android

I am trying to integrate the HockeyApp Android SDK in its latest version 4.1.2 into our Qt Android app. I don't know a lot about Android development or Java in general - nor any Qt or HockeyApp internals. There is some general official documentation…
ssc
  • 9,528
  • 10
  • 64
  • 94
2
votes
1 answer

How to Auto Send crash logs to HokeyApp in Xamarin.iOS with extra information?

I am using Hockeyapp to log crashes in my Xamarin application. For Android I used this code to auto submit crashes with little extra info: Inside MainActivity OnCreate method: CrashManager.Register(this, "APP_ID", new…
Paul Karam
  • 4,052
  • 8
  • 30
  • 53