1.2.0 • Published 5 years ago

jver-react-native-test v1.2.0

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

JVerification-React-Native

ChangeLog

1.由于RN-JCore1.6.0存在编译问题,从RN-JCore1.7.0开始,还是需要在AndroidManifest.xml中添加配置代码,具体参考 配置-2.1 Android

2.修复添加自定义布局问题

1. 安装

npm install jverification-react-native --save
  • 注意:如果项目里没有jcore-react-native,需要安装

    npm install jcore-react-native --save

2. 配置

2.1 Android

  • build.gradle

    android {
          defaultConfig {
              applicationId "yourApplicationId"           //在此替换你的应用包名
              ...
              manifestPlaceholders = [
                      JPUSH_APPKEY: "yourAppKey",         //在此替换你的APPKey
                      JPUSH_CHANNEL: "yourChannel"        //在此替换你的channel
              ]
          }
      }
    dependencies {
          ...
          implementation project(':jverification-react-native') // 添加 jverification 依赖
          implementation project(':jcore-react-native')         // 添加 jcore 依赖
      }
  • setting.gradle

    include ':jverification-react-native'
    project(':jverification-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/jverification-react-native/android')
    include ':jcore-react-native'
    project(':jcore-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/jcore-react-native/android')

2.2 iOS

2.2.1 pod

pod install
  • 注意:如果项目里使用pod安装过,请先执行命令

    pod deintegrate

2.2.2 手动方式

  • Libraries

    Add Files to "your project name"
    node_modules/jcore-react-native/ios/RCTJCoreModule.xcodeproj
    node_modules/jverification-react-native/ios/RCTJVerificationModule.xcodeproj
  • Build Settings

    All --- Search Paths --- Header Search Paths --- +
    $(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule/
    $(SRCROOT)/../node_modules/jverification-react-native/ios/RCTJVerificationModule/
  • Build Phases

    libz.tbd
    libc++.1.tbd
    libresolv.tbd
    libsqlite3.tbd
    libRCTJCoreModule.a
    libRCTJVerificationModule.a
  • info.plist

    View controller-based status bar appearance : YES

3. 引用

参考:App.js

4. API

详见:index.js

5. 其他

  • 集成前务必将example工程跑通
  • JVerification2.2.0属于重构版本,如有紧急需求请前往极光社区
  • 上报问题还麻烦先调用JVerification.setLoggerEnable( true),拿到debug日志

1.2.0

5 years ago

1.1.9

5 years ago

1.1.0

5 years ago

1.0.9

5 years ago

0.0.1

5 years ago

1.0.8

5 years ago

1.0.2

5 years ago