This document describes how to get started using the Piwik Tracking SDK for React Native. Piwik is the leading open source web analytics platform that gives you valuable insights into your website's visitors, your marketing campaigns and much more, so you can optimize your strategy and experience of your visitors. This relies on the native Android SDK and on the native iOS SDK for Piwik and this README page is heavily inspired by it.
Integrating Piwik into your React Native app
- Install Piwik
- Create a new website in the Piwik web interface. Copy the Website ID from "Settings > Websites".
- Include the library
- Initialize Tracker.
- Track screen views, goals and more.
With CocoaPods
- add
pod ‘react-native-piwik’, :path => ‘../node_modules/react-native-piwik’
to your ios/Podfile - run
pod install
manually
- Add
node_modules/react-native-piwik/ios/BNFPiwik.xcodeproj
to your xcode project, usually under theLibraries
group - Add
libBNFPiwik.a
(fromProducts
underBNFPiwik.xcodeproj
) to build target'sLinked Frameworks and Libraries
list - Delete
piwiktracker.xcdatamodeld
(fromLibraries
underBNFPiwik.xcodeproj/PiwikTracker
) - Drag
node_modules/react-native-piwik/ios/PiwikTracker/piwiktracker.xcdatamodeld
into the folder containingAppDelegate.m
- Open
/android/settings.gradle
- Below
include ':app'
add:
include ':react-native-piwik'
project(':react-native-piwik').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-piwik/android/')
- Open
android/app/build.gradle
- Add the following under
dependencies
:
compile project(':react-native-piwik')
- Open your
MainApplication.java
file underandroid/src
- Import the lib using
import de.bonify.reactnativepiwik.PiwikPackage;
- Add the following
new PiwikPackage()
to thegetPackages
function.
Before using any function below, the tracker must be initialized.
Piwik.initTracker("https://your-piwik-domain.tld/piwik.php", 1)
Providing the tracker with a user ID lets you connect data collected from multiple devices and multiple browsers for the same user. A user ID is typically a non empty string such as username, email address or UUID that uniquely identifies the user. The User ID must be the same for a given user across all her devices and browsers. . If user ID is used, it must be persisted locally by the app and set directly on the tracker each time the app is started.
If no user ID is used, the SDK will generate, manage and persist a random id for you.
Piwik.setUserId("123e4567-e89b-12d3-a456-426655440000")
To send a screen view set the screen path and titles on the tracker.
Piwik.trackScreen("/your_activity", "Title")
To collect data about user's interaction with interactive components of your app, like button presses or the use of a particular item in a game use trackEvent.
Piwik.trackEvent("category", "action", "label", 1000)
If you want to trigger a conversion manually or track some user interaction simply call the method trackGoal. Read more about what is a Goal in Piwik.
Piwik.trackGoal(1, revenue)
If you want to track the app downloads, there is also a function to do that (only supported on Android).
Piwik.trackAppDownload()
The PiwikTracker SDK supports opting out of tracking. Note that this flag must be set each time the app starts up and will default to false. To set the app-level opt out, use:
Piwik.setAppOptOut(true);
- Fork the project
- Create a feature branch based on the 'master' branch
- Create a PR and feel proud.
react-native-piwik is released under the MIT license, see LICENSE.