When calling HyperTrack.initialize() on transitional-api branch (https://github.com/hypertrack/ionic-native/pull/4) the native code is called, but there is no response. node_modules/@awesome-cordova-plugins/hyper-track/index.js ``` HyperTrack.initialize = function (publishableKey) { return new Promise(function (resolve, reject) { console.log("1") new HyperTrackPluginOriginal() .initialize(publishableKey) .then(function (cordovaInstance) { console.log("2") resolve(new HyperTrack(cordovaInstance)); }) .catch(function (err) { return reject(err); }); }); }; ``` "1" is printed, "2" isn't. No error.
When calling HyperTrack.initialize() on transitional-api branch (#4) the native code is called, but there is no response.
node_modules/@awesome-cordova-plugins/hyper-track/index.js
"1" is printed, "2" isn't. No error.