New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-native-appboy-sdk

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-appboy-sdk

Appboy SDK for React Native.

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.8K
decreased by-3.97%
Maintainers
1
Weekly downloads
 
Created
Source

Appboy Logo

React SDK

Effective marketing automation is an essential part of successfully scaling and managing your business. Appboy empowers you to build better customer relationships through a seamless, multi-channel approach that addresses all aspects of the user life cycle Appboy helps you engage your users on an ongoing basis. Visit the following link for details and we'll have you up and running in no time!

Getting Started (Default setup)

iOS

  1. Install the Appboy iOS SDK into your iOS project. See instructions for Cocoapods and manual integration at https://documentation.appboy.com/iOS/. See notes below for further information.
  2. rnpm install react-native-appboy-sdk@latest --save

Note: - if you do a Cocoapods integration for the first time, you need to add #(inherited) to the Other linker flags configuration in your app. Note: - if you do a manual integration, our library expects the AppboyKit folder to be under the root of the ios project directory. Note: - We've also inserted the token APPBOY_LIBRARY_SEARCH_PATH in the header search path, so that folks who find the default paths insufficient and care replace that token can do so. If there are any standard search paths that you think would be universally applicable, please leave an issue on the repo or a pull request and we'll update it.

iOS without rnpm

rpnm will automatically link the node package to your project. If you decide not to use it, follow these steps.

  1. npm install react-native-appboy-sdk@latest --save
  2. In the XCode's "Project navigator", right click on your project's Libraries folder ➜ Add Files to <...>
  3. Go to node_modulesreact-native-appboy-sdkios ➜ select AppboyReactBridge.xcodeproj
  4. Add AppboyReactBridge.a to Build Phases -> Link Binary With Libraries
  5. Update the 'Header Search Paths' in the AppboyReactBridge Xcode project to reference the headers directory of your installation of the Appboy iOS SDK.
iOS completing the integration
  1. Follow the directions at https://documentation.appboy.com/ to finish your integration.
  2. When you need to make Appboy calls from javascript, use the following declaration to import the javascript module:
const ReactAppboy = require('react-native-appboy-sdk');

Android

  1. npm install react-native-appboy-sdk@latest --save
// file: android/settings.gradle
...

include ':appboy-react-bridge'
project(':appboy-react-bridge').projectDir = new File(settingsDir, '../node_modules/react-native-appboy-sdk/android')
// file: android/app/build.gradle
...

dependencies {
    ...
    compile project(':appboy-react-bridge')
}
  1. Follow the directions at https://documentation.appboy.com/ to finish your integration.
  2. When you need to make Appboy calls from javascript, use the following declaration to import the javascript module:
const ReactAppboy = require('react-native-appboy-sdk');

Keywords

FAQs

Package last updated on 26 Feb 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc