Visual Studio App Center not displaying crash logs - xamarin.ios

am using visual studio and i have integrated app center for visual studio (for iOS)as like in their documentation.
I can able to see the analytics report in appcenter portal, even i can see log flow for each session. but i couldn't see crash reprots in crashlytics portal. tried with all steps, like uploading dSYM file, nothing works out. any body faced same issues?

On iOS, it's not possible to use more than one third-party crash reporting tool at a time. Your issue most likely is that you added both the App Center and the Crashlytics SDK but only one of them is able to actually catch and report the crashes. This is a result of how crash reporting works on iOS but note that it only applies to "real" crashes, not handled errors.
You have to pick one of the SDKs to do the crash reporting for you and remove/disable the functionality in the other.

Related

Q: Creation of Azure Resource Group Project in Visual Studio 2015

I am trying to create a new Azure Resource Group Project for Creating a Logic Apps Solution in Visual Studio 2015 however I am facing the below error mentioned in the Screenshot.
It seems a issue caused by visual studio instead of azure. You may have a corrupt install and depending on the order that dlls are loaded determines whether you see the error or not.
This is a workaround in the similar issue that you could refer to.
The workaround - which does not always work right away - is to Sign out of Visual Studio (This takes 2 attempts to sign out and remove the credentials). Then reboot the PC. Once logged into WIndows, launch Visual Studio - DO NOT SIGN IN. Open the solution, right click on the Deployment project; which may or may not trigger the same dialog error. If the deployment dialog is display, then i can add account and deploy. Otherwise, i must turn off the PC and try again, and again, and again, until it starts working.
I recommend you can try the workaround if necessary.Then you could report the problem and ask the Microsoft visual studio support for help.

Android Studio 3.1 not showing logs properly

I am using Android Studio 3.1 for Android Development and it is not showing logs properly.
See the image below for more details:
In the above screenshot i am currently running app on an emulator. Only 2 lines in the logs are of the app that is running on the emulator. If i run the application on physical device, results are same.
I was also facing this problem on Android Studio 3.0 and earlier.
Any suggestions?
You need to set the granularity of the filter, this can be done from .
Enter the configuration in the dialog.
There is also option of "Fold lines like this" on the logs. You just need to right click and select.
This SO explains both configuration in detail.

Unable to design an Azure Logic App from VS 2015

I am currently developing an Azure Logic App. This is very straight-forward from portal, but I need to use Visual Studio as an IDE for this. I have followed all the steps mentioned in https://azure.microsoft.com/en-in/documentation/articles/app-service-logic-deploy-from-vs/ article, but when I try to do right-click "<>.json" and say "Open in Logic App Designer", the Visual Studio crashes everytime.
Could anyone please assist on the same?
Thanks
I has a similar issue, I found I had to install the Azure Logic Apps Tools (https://marketplace.visualstudio.com/items?itemName=VinaySinghMSFT.AzureLogicAppsToolsforVisualStudio), restart Visual Studio and then create the Azure Resource Group project for it to work.
The project that I had generated without the tool installed did not work (ever).
I'm using the Azure SDK 2.9.6, Visual Studio 2015 update 3
Are you currently signed into Visual Studio with an account containing valid Azure subscriptions/currently has strong internet connectivity? That is known to cause editing issues before.
If that does not solve your problem, we have enabled logging feature in our most recent update (ver 1.0.0):
a. Open developer command prompt for VS2015
b. Run following command to start VS with activity logging enabled.
devenv.exe /log
c. Repro the issue in this instance and close it.
d. You can find the activity log at location :
%APPDATA%\Microsoft\VisualStudio\14.0\ActivityLog.xml
e. Please send us this file to us.
If you can share the logs with logicappsbug#microsoft.com, we can further assist you on this specific problem.
Thanks,
Max

Application Insight stopped sending data to portal

We already use Application Insight for diagnostics our cloud service project.
Today I added AppInsight Telemetry to project from Visual studio.
It added some lines to web config and nuget packages.
But after deployed it stopped sending data to Visual Studio Portal. No telemetry data and diagnostic data.
Now I rollback changes.
How can I add AppInsight Telemetry to out project?
In Visual Studio 2013 open Tools, Extensions and Updates,
Select Installed on the left and look for Application Insight Tools for Visual Studio and check its version. If it is version 2, uninstall it. This one sends the telemetry data to Azure instead of VS Online (portal that you mentioned above).
Now select Online and search for Application Insight Tools for Visual Studio, you will see 1.3.2 version. Install it, restart the Visual Studio and Add Application Insights Telemetry to the project..., it will show you VS Online account that it will use and the Application Insight component under which data will be captured. Run the app and after few minutes data will appear in the VS Online portal.
You can add Application Insight in Visual Studio 2012 as well. However, it is a manual process and involves below steps:
Create Application Insight application in VS Online portal
Add Nuget package to the project in VS
Finally, add few lines of code in Global.asax.cs

Publishing projects without VS Publish

Our team has been having quite a lot of trouble with Visual Studio's publish feature. We use TFS and are all running VS 2012 ultimate. It works fine when only one person is involved in a project, but when we get many people inside one project, the publish profiles get off and Visual Studio reports a successful publish even when all files haven't been copied up. I've read all the SO questions about why this happens and I understand that TFS adds the publish profiles to the source control automatically. If we create a new publish profile and republish, everything works. But this is not sustainable. I can't prevent VS from automatically adding the publish profiles to TFS (if we could, I think this would solve the problem) so I'm now looking for better ways to publish an application to a web server. Is there a better tool out there to publish web applications or do I need to write my own VS extension?
Per this question (https://stackoverflow.com/a/12393154)
The temporary answer seems to be to change your settings from release to debug, save, then switch it back. This causes the pubxml.user file to be rebuilt, which is actually the problem.

Resources