Skip to content

liuzhilong/react-native-alipay-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-alipay-sdk

forked from m2mbob's react-native-yunpeng-alipay, all credits go to him(mailto:[email protected])

Getting started

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

Mostly automatic installation

$ react-native link react-native-alipay-sdk

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-alipay-sdk and add AlipaySdk.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libAlipaySdk.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.fanqfanh.payment.AlipaySdkPackage; to the imports at the top of the file
  • Add new AlipaySdkPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-alipay-sdk'
    project(':react-native-alipay-sdk').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-alipay-sdk/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-alipay-sdk')
    

Usage

import AlipaySdk from 'react-native-alipay-sdk'

//your stuff

AlipaySdk.pay('signed pay info string').then(
  function(data) {
    console.log(data)
  },
  function(err) {
    console.log(err)
  }
)

License

MIT

About

Yet another Alipay SDK for React Native

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published