{"id":21811181,"url":"https://github.com/mathieumack/mvvx.plugins.appcenter","last_synced_at":"2025-10-08T01:31:37.523Z","repository":{"id":42437173,"uuid":"197357753","full_name":"mathieumack/MvvX.Plugins.AppCenter","owner":"mathieumack","description":"Appcenter plugin for Mvvmcross in order to manage cross-platform apis compatibility","archived":false,"fork":false,"pushed_at":"2023-01-02T21:15:18.000Z","size":528,"stargazers_count":0,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-27T13:44:19.791Z","etag":null,"topics":["appcenter","mvvmcross"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mathieumack.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-07-17T09:23:58.000Z","updated_at":"2022-03-25T00:00:15.000Z","dependencies_parsed_at":"2023-02-01T04:17:28.252Z","dependency_job_id":null,"html_url":"https://github.com/mathieumack/MvvX.Plugins.AppCenter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieumack%2FMvvX.Plugins.AppCenter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieumack%2FMvvX.Plugins.AppCenter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieumack%2FMvvX.Plugins.AppCenter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieumack%2FMvvX.Plugins.AppCenter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mathieumack","download_url":"https://codeload.github.com/mathieumack/MvvX.Plugins.AppCenter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235669404,"owners_count":19026819,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["appcenter","mvvmcross"],"created_at":"2024-11-27T13:43:38.592Z","updated_at":"2025-10-08T01:31:32.248Z","avatar_url":"https://github.com/mathieumack.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MvvX.AppCenter\n\nUse AppCenter SDK on a MvvmCross application (https://www.mvvmcross.com/).\n\n\u003e Why using a plugin as AppCenter is compatible with .net standard ?\nWith a plugin, you can use an interface (IAppCenterClient) in order to use AppCenter functions\n\n=========\n\n# IC\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=mathieumack_MvvX.Plugins.AppCenter\u0026metric=alert_status)](https://sonarcloud.io/dashboard?id=mathieumack_MvvX.Plugins.AppCenter)\n[![.NET](https://github.com/mathieumack/MvvX.Plugins.AppCenter/actions/workflows/ci.yml/badge.svg)](https://github.com/mathieumack/MvvX.Plugins.AppCenter/actions/workflows/ci.yml)\n[![NuGet package](https://buildstats.info/nuget/MvvX.Plugins.AppCenter?includePreReleases=true)](https://nuget.org/packages/MvvX.Plugins.AppCenter)\n\n# Onboarding Instructions \n\n## Installation\n\n1. Add nuget package: \n\n    Install-Package MvvX.Plugins.AppCenter\n\n2. In App.xaml.cs file add the following line in usage declaration section:\n    \u003cpre\u003eMvvX.Plugins.AppCenter;\u003c/pre\u003e\n3. In App.xaml.cs file add the following line in App class constructor: \n\n```c#\n    var appCenterClientId = \"Set AppCenter Id here\";\n    var buildVersion = \"Set your application build version here\"; \n    // ex : Assembly.GetExecutingAssembly().GetName().Version.ToString()\n    var appCenterClient = Mvx.Resolve\u003cIAppCenterClient\u003e();\n    appCenterClient.Configure(appCenterClientId, \n                                buildVersion,\n                                true,\n                                true,\n                                true,\n                                null,\n                                null);\n```\n\n## Attach file at each crash report\n\nYou can define a default file that will be attached to an Exception report when an exception occured in the application.\nTo do it, set the full file path in the Configure method\n\n```c#\n    var fileToUploadSamplePath = \"c:\\file.log\";\n    var appCenterClient = Mvx.Resolve\u003cIAppCenterClient\u003e();\n    appCenterClient.Configure(appCenterClientId, \n                                buildVersion,\n                                true,\n                                true,\n                                true,\n                                fileToUploadSamplePath,\n                                null);\n```\nIn this example, when a crash occured, the file \"c:\\file.log\" will be attached to the exception report.\n\n## Attach additional file at each crash report\n\nSometimes you need to attach more than a unique log file.\n\nFor this case, you can define additional file path to the Configure method. All files defined here will be zipped and attached to an Exception report when an exception occured in the application.\n\n```c#\n    var otherfile1 = \"c:\\temp\\otherFile.log\";\n    var otherfile2 = \"c:\\temp\\otherFile2.log\";\n    var appCenterClient = Mvx.Resolve\u003cIAppCenterClient\u003e();\n    appCenterClient.Configure(appCenterClientId, \n                                buildVersion,\n                                true,\n                                true,\n                                true,\n                                null,\n                                new List\u003cstring\u003e()\n                                {\n                                    otherfile1,\n                                    otherfile2\n                                });\n```\nIn this example, when a crash occured, a zipped file (named \"AdditionalContent.zip\") will be attached to the exception report.\n\n# Support / Contribute\n\u003e If you have any questions, problems or suggestions, create an issue or fork the project and create a Pull Request.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathieumack%2Fmvvx.plugins.appcenter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmathieumack%2Fmvvx.plugins.appcenter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathieumack%2Fmvvx.plugins.appcenter/lists"}