hockeyapp

How to Manage Deployment/Upgrades for Internal Mobile Application?

ε祈祈猫儿з 提交于 2019-12-12 04:11:28
问题 I'm creating a UWP application that will be used exclusively on rugged Win10 tablets by a group of initially 10-20. If things go well it will be expanded to 100 users. These users are employees of our company, but will be remotely located. Currently, with the test tablets, I am pushing the packages in google drive and manually copying them to the tablets, unzipping and executing the ps file on the tablet. This is way to complicated for even a beta test group of our users. I'm looking for

Send app for testing to multiple person (2000) without going to Apple approval process

时光毁灭记忆、已成空白 提交于 2019-12-12 03:26:59
问题 I want send my app for testing to multiple users. I don’t want to go for Apple approval process. I read about Enterprise program. But is there any limit for number of users? Is there any alternate option for this? 回答1: 2,000 testers? I would suspect that you don't have 2,000 testers but that you want to distribute an app outside the app store. The Enterprise program allows unlimited number of customers within your company . You pay $299 to join the program and you sign a legally binding

Auto build, deployment to hockey with Fastlane

断了今生、忘了曾经 提交于 2019-12-12 02:51:40
问题 I am studying about automatic build and deployment. I found out fastlane and trying to use for deployment to hockey. https://github.com/fastlane/examples/blob/master/Artsy/eidolon/Fastfile https://github.com/fastlane/examples/blob/master/Wikipedia/Fastfile But, I am not familiar with script. If I have 2 configuration 1) Debug 2) Release 2 scheme 1) Touch - Development 2) Touch - Production 2 hockey key 52da9f2b3da50cf8b6d4aac15f06ae9b ZXz1tdfaDLfb4hY8SagCfX4RJNMhJVsxET95sHf9 How shall I

Android ActionBar missing after extending Appcompatactivity

筅森魡賤 提交于 2019-12-11 19:04:49
问题 I've recently updated my app extending Appcompatactivity in my Activities . Since then, the Actionbar is gone when I launch an external library Intent. For example, I'm using the HockeyApp SDK to launch their FeedbackActivity Here is my code: FeedbackManager.showFeedbackActivity(this, Uri.fromFile(file)); And here a screenshot (you can see the ActionBar is gone). It used to work before until I started extending Appcompatactivity. For the rest of Activities it works. The ActionBar is gone only

UWP: optimize crash report with HockeyApp

假装没事ソ 提交于 2019-12-11 15:22:00
问题 I've developed an UWP app for a client: as we encountered some bugs that I can't reproduce on my device, we've implemented HockeyApp . The client wanted to gain time/money so I only used the basis crash report: HockeyClient.Current.Configure("xxxxxx", new TelemetryConfiguration() { EnableDiagnostics = true }) .SetExceptionDescriptionLoader((Exception ex) => { return "Exception HResult: " + ex.HResult.ToString(); }); But it seems that isn't enough, as the doesn't allow me to fix the latest

Post Custom Crashes from ASP.net mvc for hockey app doesn't work

感情迁移 提交于 2019-12-11 14:16:22
问题 We are working on a web service built with ASP .net MVC and now we want to send the crashes to Hockey app as mentioned in their website we should use their public API. I have followed all the instructions but when I try to send the log file from curl for example I use the following code and send the log file curl -F "log=@log.log" https://rink.hockeyapp.net/api/2/apps/MY_APPLICATION_ID/crashes/upload the response is <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD

How to symbolicate crash report using .pdb file

不羁的心 提交于 2019-12-11 04:31:11
问题 I've a crash report. It's not symbolicated. I've .pdb file, source code and the package, is there any way to turn this stack trace to meaningful method names using .pdb file? Exception Stack: SharedLibrary!<BaseAddress>+0x3f7d77 MyApp!<BaseAddress>+0x52b4d7 MyApp!<BaseAddress>+0x59ed69 MyApp.API.GetFilter() MyApp!<BaseAddress>+0x66f79f System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() SharedLibrary!<BaseAddress>+0x368a33 SharedLibrary!<BaseAddress>+0x369031 SharedLibrary!

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

随声附和 提交于 2019-12-11 04:08:12
问题 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 build."} Can anyone please help me? Adding build config. 回答1: The error message already indicated the root cause: It cannot find the build version. If you click on the icon after "Binary File Path", you'll find that it is used to deploy .apk, .ipa and .appx files

Hockeyapp doesnt send any crash report

你离开我真会死。 提交于 2019-12-11 00:38:19
问题 i had problem with latest version of my app, there is no crash report (in hockeyappp panel) at all but i had seen several crash on my device, i update sdk and check this doc and report: https://www.hockeyapp.net/help/sdk/ios/4.1.3/docs/docs/Troubleshooting-Crash-Reporting-Not-Working.html https://support.hockeyapp.net/discussions/problems/44219-cant-submit-crash-report-macos-hockeysdk-31 but nothing changed, there is no crash report in new fake version with throwing manual crash, my log is :

Add custom information to HockeyApp crash report

别说谁变了你拦得住时间么 提交于 2019-12-10 18:37:33
问题 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), Databases, Servers, Webapis. I want to store everything information about crash in one place - HockeyApp. Did someone has problem like that or/and develop some solution? Any help is greatly appreciated! Thanks in advance! 回答1: This looks like what you