Java

1. pom.xml 配置fundebug-java依赖

  1. <dependency>
  2. <groupId>com.fundebug</groupId>
  3. <artifactId>fundebug-java</artifactId>
  4. <version>0.3.1</version>
  5. </dependency>

2. 在项目中引入 fundebug 并配置 apikey

  1. import com.fundebug.Fundebug;
  2. Fundebug fundebug = new Fundebug("apikey");

注意:获取apikey需要免费注册帐号并且创建项目,注意选择对应的项目类型。

可以参考 Demo 项目Fundebug/fundebug-java-demo