Igor Randjelovic

Results 392 comments of Igor Randjelovic

@mapo80 I believe this has been fixed in https://github.com/NativeScript/NativeScript/commit/967d652c61fbeed6c7e8bd568c893d40308b5b58

The reason this code exists is to ensure the promise callbacks are always executed on the same thread where they are constructed. Though I don't quite understand the inner `Proxy`...

@schnapzz we'll be releasing a pre-release later today! 🚀 Update: released [v7.1.2-rc.0](https://github.com/NativeScript/ns-v8ios-runtime/releases/tag/v7.1.2-rc.0)

> ```js > let count = 0 > function cb () { > ++count > } > > setInterval(() => { > let runloop = CFRunLoopGetCurrent(); > for (var i...

@PeterStaev I think that's a change in ios 13.4 and above that uses mangled class names maybe related: https://github.com/NativeScript/ns-v8ios-runtime/commit/2b89d7c83bd8a3414f93974d1a902475c45b21bf same in the JSC runtime: https://github.com/NativeScript/ios-runtime/commit/265c6b675f2f60ed9c639981c6c66576da741028 > Since iOS 13.4 `object_getClassName`...

@brysem 6.5.4 is the JSC runtime located here: https://github.com/NativeScript/ios-runtime We are still debugging and looking into this issue, just more involved than expected.

The invocation that fails: https://github.com/NativeScript/NativeScript/blob/021c0bb9a24f15a9adf9d5e25a981ea53901e600/packages/core/ui/core/view/index.ios.ts#L787 The assertion is made in this code, either the one on L29 or L45 - we'd have to reproduce the case, while we have a...

Good catch - will try to generate them and add them. Though the XCFramework published to npm should contain the dSYMs

I meant the npm package for the runtime `@nativescript/[email protected]`, ie: https://unpkg.com/@nativescript/[email protected]/framework/internal/XCFrameworks.zip This has the `NativeScript.xcframework` which has the `dSYMs` folders in there.

Webpack does not include polyfills by default - this is likely related to missing polyfills, and an inclusion of a plugin/library that relies on the browser `window`. Possible workaround is...