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 - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

android/build.gradle

3

CHANGELOG.md

@@ -0,2 +1,5 @@

## 0.2.0
- Refactors Android module to have the source directly under the `android` folder.
## 0.1.0
- Initial release. Targets Appboy Android SDK version 1.12.0 and Appboy iOS SDK Version 1.18.4.

2

package.json
{
"name": "react-native-appboy-sdk",
"version": "0.1.0",
"version": "0.2.0",
"description": "Appboy SDK for React Native.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -11,7 +11,9 @@ ![Appboy Logo](https://github.com/Appboy/appboy-react-sdk/blob/master/Appboy_Logo_400x100.png)

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`
2. `npm install react-native-appboy-sdk@latest --save`
3. `rnpm link`
__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.
##### Notes:
- If you do a Cocoapods integration for the first time, you need to add `$(inherited)` to the `Other linker flags` configuration in your app.
- If you do a manual integration, our library expects the AppboyKit folder to be under the root of the ios project directory.
- 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.

@@ -37,3 +39,8 @@ #### iOS without rnpm

1. `npm install react-native-appboy-sdk@latest --save`
2. `rnpm link`
#### Android without rnpm
1. `npm install react-native-appboy-sdk@latest --save`
2. Link the project by adding the following:
```gradle

@@ -47,2 +54,13 @@ // file: android/settings.gradle

```gradle
// file: android/build.gradle
...
allprojects {
repositories {
...
maven { url "http://appboy.github.io/appboy-android-sdk/sdk" }
}
}
```
```gradle
// file: android/app/build.gradle

@@ -57,4 +75,5 @@ ...

2. Follow the directions at https://documentation.appboy.com/ to finish your integration.
3. When you need to make Appboy calls from javascript, use the following declaration to import the javascript module:
#### Android 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:

@@ -64,1 +83,2 @@ ```

```
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