deepwall
HomeContact UsLogin
  • Overview
  • System Components
  • Key Concepts
  • How It Works
  • Sign In
  • 🚀GETTING STARTED
  • App Registration
  • Configure In-App Products
  • Paywall Setup
    • Create A Paywall
    • Configure Look & Feel
    • Texts and Translations
  • Displaying Paywalls
    • Activate Default Displays
    • Create Targeted Displays
    • Display Priorities
    • Display Reports
    • Edit Displays
    • Display Rules
    • On Close Paywalls
  • Store Configuration
  • Attributions Configuration
  • App Status and Settings
  • ⚙️ SDK Framework
    • SDK Installation
      • iOS SDK
      • Android SDK
      • React Native SDK
      • Flutter SDK
      • Cordova SDK
      • Unity SDK
    • Using the SDKs
      • Initialization
      • Configuration
      • Listening SDK Events
      • Requesting Paywalls
      • Closing a Paywall
      • Validating Receipts
      • Making Purchases
      • Upgrades and Downgrades
      • Non-subscription Purchases
      • Restoring Purchases
      • Transition To Another Paywall
  • 🧪EXPERIMENTS
    • Experiments Overview
    • Create Experiments
    • Experiment Reports
    • Manual Traffic Allocation
    • Update Experiments
    • How Optimization Works?
  • 📦Integrations
    • Integrations Overview
    • Events List
    • Adjust
      • Get App Token
      • Create Adjust Events
    • AppsFlyer
      • Get Dev Key
    • Webhooks
    • OneSignal
  •  App Tracking (iOS 14.5)
    • App Tracking Overview
    • Configure In-app Actions
    • Create ATT Prompt
    • Displaying ATT Prompts
    • Experiments
  • 📈DASHBOARD
    • App Overview
    • Invite Members
    • Access Management
  • GUIDES
    • Apple
      • Getting the App Credentials
      • Setup In-App Products
      • Getting the Shared Secret
      • Server to server notifications
    • Google
      • Getting App Credentials
      • Setup In-App Products
      • Create Service Account Key
      • Developer Notifications
    • Huawei
      • Getting App Credentials
      • Setup In-App Products
      • Developer Notifications
  • 🔍Testing
    • Test Flows
    • Troubleshooting
    • Sandbox Testing
      • Apple App Store
      • Google Play Store
  • 🔗SDK Links
  • iOS SDK
  • Android SDK
  • React Native SDK
  • Flutter SDK
  • Cordova SDK
  • Unity SDK
Powered by GitBook
On this page
  • Requirements
  • Installation
  • Additional Setup for iOS
  • Additional Setup for Android
  • Import and Use

Was this helpful?

  1. ⚙️ SDK Framework
  2. SDK Installation

React Native SDK

Instructions for installing Deepwall React Native SDK

PreviousAndroid SDKNextFlutter SDK

Last updated 4 years ago

Was this helpful?

React Native SDK provides wrapper methods for Deepwall iOS and Android SDKs.

Requirements

  • iOS 10.0+

  • Android API Level 21+

  • React Native 0.56.0+

Installation

Deepwall for React Native is available on .

1.Install the Deepwall library

$ npm install deepwall-react-native-sdk --save

2. For React Native 0.59 and below, run the following to link to the library

Run $ react-native link deepwall-react-native-sdk

Additional Setup for iOS

1. Set minimum ios version to 10.0 in ios/Podfile and add use_frameworks! into ios/Podfile

2. Add pod 'DeepWall' into ios/Podfile and remove flipper from ios/Podfile if it exists.

platform :ios, '10.0'
use_frameworks!
pod 'DeepWall'

3. Run pod install

Run $ cd ios && pod install

Additional Setup for Android

  1. Set minSdkVersion to 21 in android/build.gradleand add the Deepwall library into repositories under allprojects.

allprojects {
   repositories {
       google()
       jcenter()
       maven { url 'https://raw.githubusercontent.com/Teknasyon-Teknoloji/deepwall-android-sdk/master/' }
  }
} 

Import and Use

Now you can use DeepWall by importing Deepwall to your project. Learn how to configure and use the Deepwall SDK using the following guide.

Using the SDKs
npm
MIT License