AppCenter

Posted by Leo Yang on 2020-07-02

nuget安裝套件

1
2
3
Microsoft.AppCenter
Microsoft.AppCenter.Analytics
Microsoft.AppCenter.Crashes

AppCenter

AppCenter中建立應用程式

建立完會拿到一組Key 長得像這樣 007e393d-9250-4bfa-aaaa-cccc0000oooo

AppCenter
AppCenter

App.xaml加入AppCenter程式碼

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System.Windows;
using Microsoft.AppCenter;
using Microsoft.AppCenter.Analytics;
using Microsoft.AppCenter.Crashes;

namespace DataGridDemo
{
/// <summary>
/// App.xaml 的互動邏輯
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
AppCenter.Start("{key}", typeof(Analytics), typeof(Crashes));
}
}
}

可以幹嘛

可以知道使用者相關資訊(地區、作業系統)還有程式Crash的相關資訊
AppCenter
AppCenter