1.0.1 • Published 3 years ago

cordova-plugin-mz-bugly-sdk v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

项目说明

腾讯Buyly SDK的Cordova插件。

安装

cordova plugin add cordova-plugin-mz-bugly-sdk.git

调用

初始化SDK

var args = {
    // 通用配置
    debug:true,
    ios_appId:"",
    //是否开启卡顿检测
    block_monitor_enable:true
};

window.bugly.initSDK(function(success){
	console.log("初始化成功");
},function(err){
   console.log("初始化失败");
   console.log(err);
},args);