npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-letote-udesk

v1.1.0

Published

React Native 的udesk插件, 目前只支持android ## 如何安装 ### 安装包 ``` npm install react-native-udesk --save ``` ### 手动link 在 `android/setting.gradle`里添加如下代码:

Downloads

35

Readme

react-native-udesk

npm version MIT Platform - Android

React Native 的udesk插件, 目前只支持android

如何安装

安装包

npm install react-native-udesk --save

手动link

android/setting.gradle里添加如下代码:

include ':react-native-udesk'
project(':react-native-udesk').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-udesk/android')
include ':udeskSDKUI'
project(':udeskSDKUI').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-udesk/UdeskSDKUI')

app/build.gradle里添加如下代码:

compile project(':react-native-udesk')

在 application里添加如下代码:

new UdeskPackage()

包:

import com.lenny.module.udesk.UdeskPackage;

使用

初始化

...
import UdeskAPI from 'react-native-udesk';
...
UdeskAPI.initSDK(UDESK_DOMAIN, UDESK_APPKEY, UDESK_APPID);

设置用户信息

const user = {
        nick_name: ***,
        cellphone: ***,
        // email: ***,
        sdk_token: ***,
        customer_field: { // 自定义的字段
          TextField_10075: ***,
        },
        // description: ***,
      };
      UdeskAPI.setUserInfo(user, (response) => {

        });

普通的在线客服

UdeskAPI.entryChat();

带商品信息的 客服聊天界面

 const params = {
   productImageUrl: 'https://qn-im.udesk.cn/570D6DB3-113D-4310-921A-F5E66D158CC2-2017-04-05-03-42-33.jpg',
   productTitle: '测试测试测试测你测试测试测你测试测试测你测试测试测你测试测试测你测试测试测你!',
   productDetail: '¥9988888.088888.088888.0',
   productURL: 'http://www.xebest.com',
 };
UdeskAPI.createCommodity(params, (response) => {

  });

android 代码混淆

如果需要混淆,请加上以下规则

//udesk
-keep class udesk.** {*;}
-keep class cn.udesk.**{*; }
//七牛
-keep class okhttp3.** {*;}
-keep class okio.** {*;}
-keep class com.qiniu.**{*;}
-keep class com.qiniu.**{public <init>();}
-ignorewarnings
//smack
-keep class org.jxmpp.** {*;}
-keep class de.measite.** {*;}
-keep class org.jivesoftware.** {*;}
-keep class org.xmlpull.** {*;}
-dontwarn org.xbill.**
-keep class org.xbill.** {*;}

//freso
-keep class com.facebook.** {*; }  
-keep class com.facebook.imagepipeline.** {*; }
-keep class com.facebook.animated.gif.** {*; }  
-keep class com.facebook.drawee.** {*; }  
-keep class com.facebook.drawee.backends.pipeline.** {*; }  
-keep class com.facebook.imagepipeline.** {*; }  
-keep class bolts.** {*; }  
-keep class me.relex.photodraweeview.** {*; }  



 //其它
-keep class com.tencent.bugly.** {*; }