Batch.com SDK 集成 您可以使用以下方法之一实现 Adjust SDK 与 Batch.com 事件的集成。 操作前须知 要使用该功能,请先下载并设置 Adjust Android SDK。 要集成 Adjust 和 Batch.com SDK,您需要将归因发送到 Batch.com SDK。收到 Adjust 服务器响应后,您应该发送此信息。为此,请按照归因回传设置指南中的步骤进行操作。 示例 您可通过以下方式设置回传方法: 1AdjustConfig config = new AdjustConfig(this, appToken, environment);2 3config.setOnAttributionChangedListener(new OnAttributionChangedListener() {4 @Override5 public void onAttributionChanged(AdjustAttribution attribution) {6 // Initiate Batch user editor to set new attributes.7 BatchUserDataEditor editor = Batch.User.editor();8 9 if (attribution.network != null) {10 editor.setAttribute("adjust_network", attribution.network);11 }12 if (attribution.campaign != null) {13 editor.setAttribute("adjust_campaign", attribution.campaign);14 }15 if (attribution.adgroup != null) {16 editor.setAttribute("adjust_adgroup", attribution.adgroup);17 }18 if (attribution.creative != null) {19 editor.setAttribute("adjust_creative", attribution.creative);20 }21 22 // Send new attributes to Batch servers.23 editor.save();24 }25});26 27Adjust.initSdk(config);