Skip to content

Commit 56bd86c

Browse files
authored
Update README.md
1 parent 41f6a0a commit 56bd86c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# MAUI SDK for Aptabase
44

5-
Instrument your apps with Aptabase, an Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps.
5+
Instrument your apps with Aptabase, an Open Source, Privacy-First and, Simple Analytics for Mobile, Desktop and, Web Apps.
66

77
## Install
88

@@ -14,7 +14,7 @@ Start by adding the Aptabase NuGet package to your .csproj:
1414

1515
## Usage
1616

17-
First you need to get your `App Key` from Aptabase, you can find it in the `Instructions` menu on the left side menu.
17+
First, you need to get your `App Key` from Aptabase, you can find it in the `Instructions` menu on the left side menu.
1818

1919
Change your `MauiProgram.cs` to add Aptabase to the build pipeline:
2020

@@ -63,9 +63,9 @@ public partial class MainPage : ContentPage
6363
The `TrackEvent` method also supports custom properties:
6464

6565
```csharp
66-
_aptabase.TrackEvent("connect_click"); // An event with no properties
67-
_aptabase.TrackEvent("play_music", new() { // An event with a custom property
68-
{ "name", "Here comes the sun" }
66+
_aptabase.TrackEvent("app_started"); // An event with no properties
67+
_aptabase.TrackEvent("screen_view", new() { // An event with a custom property
68+
{ "name", Settings" }
6969
});
7070
```
7171

@@ -74,5 +74,5 @@ A few important notes:
7474
1. The SDK will automatically enhance the event with some useful information, like the OS, the app version, and other things.
7575
2. You're in control of what gets sent to Aptabase. This SDK does not automatically track any events, you need to call `TrackEvent` manually.
7676
- Because of this, it's generally recommended to at least track an event at startup
77-
3. The `TrackEvent` function is a non-blocking operation as it runs on the background.
77+
3. The `TrackEvent` function is a non-blocking operation as it runs in the background.
7878
4. Only strings and numbers values are allowed on custom properties

0 commit comments

Comments
 (0)