Darin Dimitrov
Darin Dimitrov
@relez, does your application crash as a result of this? Currently we have a similar known issue with AppCompat, which results in those errors being logged on certain API Levels....
I am unable to reproduce the crash on my device. Could you send the adb log of the crash?
@jibon57, unfortunately I am not able to reproduce the crash and the log dump doesn’t seem to contain any error message which could be helpful. You can try commenting out...
@mrfuxi, thanks for reporting this issue. Implementing content providers in javascript is unfortunately not supported at the moment. Content providers are instantiated very early in the application lifecycle (prior to...
There are some additional steps involved in building v8 for iOS than simply running the `build_v8.sh` shell script. What exactly are you trying to achieve?
After debugging we have discovered that the issue is related to a javascript variable in the plugin that is used after being garbage collected: https://github.com/EddyVerbruggen/nativescript-plugin-firebase/blob/master/src/firebase.ios.ts#L745 The `fAuth` is a local...
@delaneyb, great job in pinpointing this issue! I have included your suggested fix for the SymbolLoader memory leak in the [V8 update PR](https://github.com/NativeScript/ns-v8ios-runtime/pull/102/commits/d95a4cdc69bb1146cddcb256419cfab999a72310). After applying it, I was able to...
The full file paths are pretty long on iOS and are intentionally stripped as it makes stacktraces harder to read. Consider this: ``` at (file:///var/containers/Bundle/Application/94891CB2-71B9-4DF6-99FB-742E82210A7A/TestRunner.app/app/index.js:6:17) at test (file:///var/containers/Bundle/Application/94891CB2-71B9-4DF6-99FB-742E82210A7A/TestRunner.app/app/index.js:8:21) at (file:///var/containers/Bundle/Application/94891CB2-71B9-4DF6-99FB-742E82210A7A/TestRunner.app/app/index.js:9:3)...
Thanks for the observation. We will look into this and report back any findings.
@farfromrefug, could you please provide a sample illustrating the slowdown? I have tried the following method: ```javascript class Path { constructor() { this.path_ = CGPathCreateMutable(); CGPathMoveToPoint(this.path_, null, 0, 0); }...