Java
1. pom.xml 配置fundebug-java依赖
<dependency>
<groupId>com.fundebug</groupId>
<artifactId>fundebug-java</artifactId>
<version>0.3.1</version>
</dependency>
2. 在项目中引入 fundebug 并配置 apikey
import com.fundebug.Fundebug;
Fundebug fundebug = new Fundebug("apikey");
注意:获取apikey需要免费注册帐号并且创建项目,注意选择对应的项目类型。
可以参考 Demo 项目Fundebug/fundebug-java-demo。