我们的iOS应用程序在iTunes中存在,我们希望将它与Branch io集成。我们可以构建ipa进行测试,但是当我们尝试“导出版本构建”时,Flash Builder 4.6将会挂起。
这是我们遵循的分支指南: https://dev.branch.io/getting-started/sdk-integration-guide/guide/adobe/
我们只是按照步骤进行操作,然后将步骤4中的内容放入其中 在主类中的branch.init()。分支io中的设置设置正常。
这里是代码,(仅从分支机构io的网站上复制)
// Then create a Branch instance:
var branch:Branch = new Branch();
// Register two events before initializing the SDK:
branch.addEventListener(BranchEvent.INIT_FAILED, initFailed);
branch.addEventListener(BranchEvent.INIT_SUCCESSED, initSuccessed);
private function initFailed(bEvt:BranchEvent):void {
trace("BranchEvent.INIT_FAILED", bEvt.informations);
}
private function initSuccessed(bEvt:BranchEvent):void {
trace("BranchEvent.INIT_SUCCESSED", bEvt.informations);
// params are the deep linked params associated with the link that the user clicked before showing up
// params will be empty if no data found
var referringParams:Object = JSON.parse(bEvt.informations);
//trace(referringParams.user);
}
// Initialize the SDK:
branch.init();
任何线索?