Giter Site home page Giter Site logo

renganatha10 / react-native-adyenpay Goto Github PK

View Code? Open in Web Editor NEW
4.0 4.0 1.0 417 KB

Bridged Example For Adyen in React Native : [Deprecated]

License: MIT License

JavaScript 3.26% Java 56.61% Objective-C 3.98% Swift 36.15%
react-native react-native-bridge adyen ios android payment-gateway

react-native-adyenpay's Introduction

react-native-adyen

Getting started

$ npm install react-native-adyenpay --save

Usage

import RNAdyen from react-native-adyenpay

Considering you want to Build Custom UI using Adyen

Methods and Events

Methods

  • initializeAdyen() - To Initialize the Adyen
  • setPaymentData(responseFromBackend) - Consider Your calling the API from Javascript Side
  • setCardDetails({ name, cvc, expiryDate, shouldSave, number })
  • setPaymentMethodForIdeal('ideal', idealId)
  • setPaymentMethodsForCard('card')
  • setURLCompletion() - Call the function after payment redirection to your app (redirection based payment)

Events

  • getToken - Gives the Token From SDK
  • getRedirectUrlForIdeal - return Redirect URL from Adyen
  • paymentResult - Finally, Results

Payment Supported

  • Ideal

  • MasterCard

  • Visa

  • American Express

  • Maestro

  • Apple Pay

  • Google Pay

  • Paypal

Installation

$ react-native link react-native-adyen

IOS

create Podfile in ios with following content

  platform :ios, '9.0'
  use_frameworks!
  target 'Your Target Name' do
	  pod 'Adyen',
  end
		
  post_install do |installer|
    installer.pods_project.targets.each do |target|
      if target.name == 'Adyen'
        target.build_configurations.each do |config|
          config.build_settings['SWIFT_VERSION'] = '4.0'
        end
      end
    end
  end

run pod install

open YourProject.xcworkspace/

create a group RNAdyen under your project top level and add files under directory node_modules/react-native-adyen/ios/ReactNativeCharts

choose Group ForBeginner, create a empty swift file, the xcode will prompt creating a bridging file, let's name it YourProject-Bridging-Header.h

replace content with

#import <React/RCTEventEmitter.h>
#import <React/RCTBridgeModule.h>
#import <React/RCTBridge.h>
#import <React/RCTEventDispatcher.h>

set YourProject-Bridging-Header.h in Build Settings -> Swift Compiler - General -> Object-C Bridging Header

set No in Build Settings -> Swift Compiler - Version -> User Legacy Swift Language Version

click run or use react-native run-ios That is all.

Android

react-native link react-native-adyen should install all the dependency

caveats

Make sure you have the following configuration

  1. In your android/app/build.gradle
  compileSdkVersion 25
  buildToolsVersion "25.0.1"

  defaultConfig {
      ...      
      targetSdkVersion 25        
  }

  ....
}
  1. In Your AppManifest.xml

    You need to set the launchMode of MainActivity to single task

<activity
    android:name=".MainActivity"
    android:launchMode="singleTask">

react-native-adyenpay's People

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

react-native-adyenpay's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.