Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions data_collection/mobile/Piwik_PRO_SDK_for_Android.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ No prefixes are used for tracking downloads, but each event of this type use an

### Tracking application installs
*Requires Analytics*
> **Warning:** Deprecated since version 1.2.1. We recommend using the new version of the method ([applicationInstall](#tracking-application-installation)).

You can also track installations of your application. This event is sent to the server only once per application installation.

Expand All @@ -266,6 +267,25 @@ You can also track installations of your application. This event is sent to the
```
Application installation is only tracked during the first launch. In the case of the application being installed but not run, the app installation will not be tracked.

### Tracking application installation
*Requires Analytics*

You can track installations of your application. This event is sent to the server only once per application installation.

```java
TrackHelper.track().applicationInstall().with(getTracker());
```
In case of the application being installed but not run, the app installation will not be tracked.

### Tracking application updated
*Requires Analytics*

This event is sent to the server only once per application version, when the version number of the application changes.

```java
TrackHelper.track().applicationUpdate().with(getTracker());
```

### Tracking outlinks
*Requires Analytics*

Expand Down
20 changes: 20 additions & 0 deletions data_collection/mobile/Piwik_PRO_SDK_for_iOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ No prefixes are used for tracking downloads, but each event of this type use an

### Tracking application installs
*Requires Analytics*
> **Warning:** Deprecated since version 1.2.3. We recommend using the new version of the method ([applicationInstall](#tracking-application-installation)).

You can also track installations of your application. This event is sent to the server only once per application version therefore if you wish to track installs, then you can add it in your application delegate immediately after configuring the tracker.

Expand All @@ -201,6 +202,25 @@ You can also track installations of your application. This event is sent to the
```
Application installation is only tracked during the first launch. In the case of the application being installed but not run, the app installation will not be tracked.

### Tracking application installation
*Requires Analytics*

You can track installations of your application. This event is sent to the server only once per application installation.

```
[[PiwikTracker sharedInstance] applicationInstall];;
```
In case of the application being installed but not run, the app installation will not be tracked.

### Tracking application updated
*Requires Analytics*

This event is sent to the server only once per application version, when the version number of the application changes.

```
[[PiwikTracker sharedInstance] applicationUpdate];
```

### Tracking outlinks
*Requires Analytics*

Expand Down