1.0.1 • Published 5 years ago

react-native-bugly-sdk v1.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

react-native-bugly-sdk

Getting started

$ yarn add react-native-bugly-sdk

Mostly automatic installation

$ react-native link react-native-bugly-sdk

配置

iOS

使用 Bugly 的 Info.plist 配置初始化信息 Bugly 支持读取 Info.plist 文件读取 SDK 初始化参数,可配置的参数如下:

  • Appid
    • Key: BuglyAppIDString
    • Value: 字符串类型
  • 渠道标识
    • Key: BuglyAppChannelString
    • Value: 字符串类型
  • 版本信息
    • Key: BuglyAppVersionString
    • Value: 字符串类型
  • 开启 Debug 信息显示
    • Key: BuglyDebugEnable
    • Value: BOOL 类型

Manual installation

iOS

node node_modules/react-native-bugly-sdk/scripts/postlink

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNBuglyPackage; to the imports at the top of the file
  • Add new RNBuglyPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-bugly-sdk'
    project(':react-native-bugly-sdk').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-bugly-sdk/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-bugly-sdk')

Usage

Android

AppDelegate.m

#import "RNBugly.h"
-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
  //Add Bugly
  [RNBugly startWithAppId];
}

src/main/java/your_project/MainApplication

import com.tencent.bugly.crashreport.CrashReport;

@Override
public void onCreate() {
  super.onCreate();
  //bugly
  CrashReport.initCrashReport(getApplicationContext());

  ...
}
import RNBugly from "react-native-bugly-sdk";

RNBugly.updateAppVersion(version);
RNBugly.setUserIdentifier(userId);