1 Star 0 Fork 0

Stephen/react-native-umeng-push

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
import { NativeModules } from 'react-native';
import { stat } from 'react-native-fs';
const UmengPush = NativeModules.RNUmengPush
// export default RNUmengPush;
export default class RNUmengPush {
/**
* 厂家通道点击事件处理
*
* @static
* @param {any} cb
* @memberof RNUmengPush
*/
static ManufacturerCallback(cb) {
UmengPush.ManufacturerCallback((param) => {
cb(param)
});
}
static openNotificationSetting() {
UmengPush.openNotificationSetting()
}
static checkNotification(cb) {
UmengPush.checkNotification((result) => {
cb(result)
});
}
/**
* 获取SDK的Cid
*
* @return Cid值
*/
static clientId(cb) {
UmengPush.clientId((param) => {
cb(param)
});
}
/**
* 清除所有通知
*/
static clearAllNotifications() {
UmengPush.clearAllNotifications()
}
/**
* initPush
*/
static initPush() {
UmengPush.initPush()
}
/**
* 销毁SDK,并且释放资源
*/
static destroy() {
UmengPush.destroy();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yaojinye/react-native-umeng-push.git
git@gitee.com:yaojinye/react-native-umeng-push.git
yaojinye
react-native-umeng-push
react-native-umeng-push
master

搜索帮助