branch io integration with Adobe air app issue -
our ios app live in itunes, , want integrate branch io. can build ipa testing, when try "export release build", flash builder 4.6 hang.
this branch io guide following: https://dev.branch.io/getting-started/sdk-integration-guide/guide/adobe/
we followed steps, , put in stuff step 4, called branch.init() in main class. setting in branch io setup ok.
here codes, (just copied branch io's website)
// create branch instance: var branch:branch = new branch(); // register 2 events before initializing 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 deep linked params associated link user clicked before showing // params empty if no data found var referringparams:object = json.parse(bevt.informations); //trace(referringparams.user); } // initialize sdk: branch.init();
any clues?
Comments
Post a Comment