🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@allboatsrise/expo-blueconic

Package Overview
Dependencies
Maintainers
0
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@allboatsrise/expo-blueconic

Expo module for BlueConic SDK React Native

latest
Source
npmnpm
Version
5.0.0
Version published
Maintainers
0
Created
Source

@allboatsrise/expo-blueconic

Expo module for BlueConic SDK React Native

Installation

To install the package use your prefered package manager:

npm install @allboatsrise/expo-blueconic @blueconic/blueconic-react-native

or

yarn add @allboatsrise/expo-blueconic @blueconic/blueconic-react-native

Plugin setup

Add package to plugins in app.js/app.config.js.

"expo": {
  "plugins": [
    "@allboatsrise/expo-blueconic"
  ]
}

Usage

Initialization

import {BlueConicClient, BlueConicConfiguration} from '@allboatsrise/expo-blueconic'

// initialization
BlueConicClient.initialize(
  new BlueConicConfiguration.Builder()
    .setHostName(BLUECONIC_SERVER_URL) // your server url
    .setDebug(false) // optional
    .build(),
  (_success, fail) => {
    if (!fail) return
    console.error(fail) // log error
  }
)

// sample api call
BlueConicClient.setProfileValue('property_name', 'property value')

Keywords

react-native

FAQs

Package last updated on 30 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts