Skip to content
This repository has been archived by the owner on Jul 27, 2020. It is now read-only.

Latest commit

 

History

History
33 lines (26 loc) · 730 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 730 Bytes

cordova plugin cordova-plugin-kepler --variable KEPLER_APPKEY=APPKEY --variable KEPLER_APPSECRET=APPSECRET

插件配置

  • android 放置安全图片到 raw 文件夹内
  • ios 放置安全图片到 Kepler.bundle

Auth

    // 登录
    Kepler.Login(v => {
      // 授权成功
    }, le => {
     // 授权失败
    })
    
    // 注销
    Kepler.Logout(_ => {
      // 注销成功
    })

    // 检测是否登录
    Kepler.IsLogin(v => {
        // 已登录
    }, e => {
      // 未登录
    })