@brandingbrand/react-native-leanplum
TypeScript icon, indicating that this package has built-in type declarations

6.0.0 • Public • Published

React Native Leanplum

npm version

Supported React Native Versions

This library was updated to support React Native autolinking in version 5.0; therefore it is not recommended to upgrade to version 5 unless you are running React Native 0.60 or above.

React Native React Native Leanplum
0.60.0+ >= 4.0.0
0.40.0 - 0.59.x <= 3.0.0

Install

yarn add @brandingbrand/react-native-leanplum

Usage

You may need https://github.com/brandingbrand/react-native-push-notification-leanplum too

JS

import Leanplum from '@brandingbrand/react-native-leanplum';
...
const leanPlumKeys = {
  appId: '',
  development: '',
  production: '',
}
...
const start = async () => {
  if (__DEV__) {
    Leanplum.setAppIdForDevelopmentMode(
      leanPlumKeys.appId,
      leanPlumKeys.development,
    );
  } else {
    Leanplum.setAppIdForProductionMode(
      leanPlumKeys.appId,
      leanPlumKeys.production,
    );
  }

  const started = await Leanplum.hasStarted();
  if (!started) Leanplum.start();
};

Leanplum API

  • setApiConnectionSettings:
    Optional
    Sets the API server. The API path is of the form http[s]://hostname/servletName
    @param hostName The name of the API host, such as api.leanplum.com
    @param servletName The name of the API servlet, such as api
    @param ssl Whether to use SSL

  • setNetworkTimeout:
    Optional
    Adjusts the network timeouts. The default timeout is 10 seconds for requests, and 15 seconds for file downloads.

  • setNetworkActivityIndicatorEnabled:
    iOS Only
    Sets whether to show the network activity indicator in the status bar when making requests. Default: YES.

  • setCanDownloadContentMidSessionInProductionMode:
    Advanced
    Whether new variables can be downloaded mid-session. By default, this is disabled. Currently, if this is enabled, new variables can only be downloaded if a push notification is sent while the app is running, and the notification's metadata hasn't be downloaded yet.

  • setFileHashingEnabledInDevelopmentMode:
    Modifies the file hashing setting in development mode. By default, Leanplum will hash file variables to determine if they're modified and need to be uploaded to the server if we're running in the simulator. Setting this to NO will reduce startup latency in development mode, but it's possible that Leanplum will not always have the most up-to-date versions of your resources.

  • setVerboseLoggingInDevelopmentMode:
    iOS Only
    Sets whether to enable verbose logging in development mode. Default: NO.

  • setInAppPurchaseEventName:
    iOS Only
    Sets a custom event name for in-app purchase tracking. Default: Purchase.

  • setAppIdForDevelopmentMode:
    Must call either this or {@link setAppIdForProductionMode} before issuing any calls to the API, including start.
    @param appId Your app ID.
    @param accessKey Your development key.

  • setAppIdForProductionMode:
    Must call either this or {@link setAppIdForDevelopmentMode} before issuing any calls to the API, including start.
    @param appId Your app ID.
    @param accessKey Your production key.

  • setDeviceId:
    Sets a custom device ID. For example, you may want to pass the advertising ID to do attribution. By default, the device ID is the identifier for vendor.

  • setAppVersion:
    iOS Only
    By default, Leanplum reports the version of your app using CFBundleVersion, which can be used for reporting and targeting on the Leanplum dashboard. If you wish to use CFBundleShortVersionString or any other string as the version, you can call this before your call to Leanplum.start()

  • start:
    Call this when your application starts. This will initiate a call to Leanplum's servers to get the values of the variables used in your app.

  • hasStarted:
    Returns whether or not Leanplum has finished starting.

  • hasStartedAndRegisteredAsDeveloper:
    Returns whether or not Leanplum has finished starting and the device is registered as a developer.

  • onStartResponse:
    Function to call when the start call finishes, and variables are returned back from the server. Calling this multiple times will call each function in succession.

  • onVariablesChanged:
    Function to call when the variables receive new values from the server. This will be called on start, and also later on if the user is in an experiment that can update in realtime.

  • onInterfaceChanged:
    iOS Only
    Function to call when the interface receive new values from the server. This will be called on start, and also later on if the user is in an experiment that can update in realtime.

  • onVariablesChangedAndNoDownloadsPending:
    Function to call when no more file downloads are pending (either when no files needed to be downloaded or all downloads have been completed).

  • onceVariablesChangedAndNoDownloadsPending:
    Function to call ONCE when no more file downloads are pending (either when no files needed to be downloaded or all downloads have been completed).

  • setUserId:
    Updates a user ID after session start.

  • setUserAttributes:
    Updates a user ID after session start with a dictionary of user attributes.

  • setTrafficSourceInfo:
    Sets the traffic source info for the current user. Keys in info must be one of:

    • publisherId
    • publisherName
    • publisherSubPublishe
    • publisherSubSite
    • publisherSubCampaign
    • publisherSubAdGroup
    • publisherSubAd
  • advanceTo:
    Advances to a particular state in your application. The string can be any value of your choosing, and will show up in the dashboard. A state is a section of your app that the user is currently in. You can specify up to 200 types of parameters per app across all events and state. The parameter keys must be strings, and values either strings or numbers.
    @param state The name of the state. (nullable)
    @param info Anything else you want to log with the state. For example, if the state is watchVideo, info could be the video ID.
    @param params A dictionary with custom parameters.

  • pauseState:
    Pauses the current state. You can use this if your game has a "pause" mode. You shouldn't call it when someone switches out of your app because that's done automatically.

  • resumeState:
    Resumes the current state.

  • trackAllAppScreens:
    Automatically tracks all of the screens in the app as states. You should not use this in conjunction with advanceTo as the user can only be in 1 state at a time. This method requires LeanplumUIEditor module.

  • trackPurchase:
    Manually track purchase event with currency code in your application. It is advised to use trackInAppPurchases to automatically track IAPs.

  • trackInAppPurchases:
    iOS Only
    Automatically tracks InApp purchase and does server side receipt validation.

  • track:
    Logs a particular event in your application. The string can be any value of your choosing, and will show up in the dashboard. To track a purchase, use trackPurchase().

  • variants:
    Gets a list of variants that are currently active for this user. Each variant is a dictionary containing an id.

  • forceContentUpdate:
    Forces content to update from the server. If variables have changed, the appropriate callbacks will fire. Use sparingly as if the app is updated, you'll have to deal with potentially inconsistent state or user experience. The provided callback will always fire regardless of whether the variables have changed.

  • enableTestMode:
    This should be your first statement in a unit test. This prevents Leanplum from communicating with the server.

  • setTestModeEnabled:
    Used to enable or disable test mode. Test mode prevents Leanplum from communicating with the server. This is useful for unit tests.

  • setPushSetup:
    iOS Only
    Customize push setup. If this API should be called before [Leanplum start]. If this API is not used the default push setup from the docs will be used for "Push Ask to Ask" and "Register For Push".

  • isPreLeanplumInstall:
    iOS Only
    Returns YES if the app existed on the device more than a day previous to a version built with Leanplum was installed.

  • deviceId:
    Returns the deviceId in the current Leanplum session. This should only be called after Leanplum.start().

  • userId:
    Returns the userId in the current Leanplum session. This should only be called after [Leanplum start].

  • inbox:
    Returns an instance to the singleton LPInbox object.

LPInbox

LPInboxMessage

Readme

Keywords

none

Package Sidebar

Install

npm i @brandingbrand/react-native-leanplum

Weekly Downloads

422

Version

6.0.0

License

MIT

Unpacked Size

120 kB

Total Files

38

Last publish

Collaborators

  • bbtravisreadonly
  • tom_thornton
  • philtompkins
  • nathan-sankbeil
  • chrisjlan89branding
  • branderbrett
  • skyeckstrom
  • nickburkhartbb
  • bbtravis
  • deemaabdallah
  • msiauko
  • jasonmosleybb
  • dshadrick
  • nickbb
  • notajvento
  • andyschwob
  • xero
  • varzamanbb
  • bb_jenkins
  • crherman7
  • wsedlacekc
  • ckornell
  • jmwr
  • mjweb48