https://github.com/jpush/jverification-react-native
https://github.com/jpush/jverification-react-native
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jpush/jverification-react-native
- Owner: jpush
- License: mit
- Created: 2018-11-05T06:54:15.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-02-20T04:24:01.000Z (11 months ago)
- Last Synced: 2025-03-09T03:24:32.027Z (10 months ago)
- Language: Objective-C
- Size: 267 MB
- Stars: 30
- Watchers: 18
- Forks: 32
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# JVerification-React-Native
## 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 配置AppKey
* App.js
```
const initParams = {
'time': 5000,
'appKey': 'yourAppKey', //仅iOS
'channel': 'channel', //仅iOS
'advertisingId': 'advertisingId', //仅iOS
'isProduction': false, //仅iOS
};
```
## 3. 引用
参考:[App.js](https://github.com/jpush/jverification-react-native/tree/master/example/App.js)
## 4. API
+ API详细说明:[API详细说明.md](https://github.com/jpush/jverification-react-native/blob/master/API%E8%AF%A6%E7%BB%86%E8%AF%B4%E6%98%8E.md)
+ 授权页面元素配置说明:[认证SDK授权页面元素配置API说明.md](https://github.com/jpush/jverification-react-native/blob/master/%E8%AE%A4%E8%AF%81SDK%E6%8E%88%E6%9D%83%E9%A1%B5%E9%9D%A2%E5%85%83%E7%B4%A0%E9%85%8D%E7%BD%AEAPI%E8%AF%B4%E6%98%8E.md)
+ 示例详见:[index.js](https://github.com/jpush/jverification-react-native/tree/master/index.js)
## 5. 其他
* 集成前务必将example工程跑通
* JVerification2.2.0属于重构版本,如有紧急需求请前往[极光社区](https://community.jiguang.cn/c/question)
* 上报问题还麻烦先调用JVerification.setLoggerEnable( true),拿到debug日志