ios icon indicating copy to clipboard operation
ios copied to clipboard

NativeScript for iOS using V8

Results 65 ios issues
Sort by recently updated
recently updated
newest added

We're also experiencing pretty random but often crash from time to time on iOS devices with latest NS 7 core modules and the project built with Xcode 12: ``` ======...

NSLog has a 1024 character limit, and anything beyond is truncated with ``. This PR aims to split longer logs into multiple `NSLog` calls when necessary. This is already possible...

cla: yes

Simply referencing another issue posted on the Nativescript repo but it seem to be an issue with the v8 ios runtime so I'll post it here as it seem a...

I am running into a reproducible memory leak that occurs when navigating to another page. In my example we navigate with a 1 second timeout to the same page in...

OS Version: iOS 15.4.1 (19E258) Report Version: 104 Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: BUS_NOOP at 0x1900007463656a6a Crashed Thread: 6 Application Specific Information: permessage_deflate > Attempted to dereference garbage pointer...

This may be a duplicate of #139 but I'm posting it separately as the backtraces are not quite the same and mine seems to give a reason for the crash...

Still needs android implementation Allows for: ``` // some-script.js console.log('some script logged'); // main.js console.log('start'); require('./some-script.js'); delete require.cache['./some-script.js']; console.log('delete'); require('./some-script.js'); console.log('end'); // output start some script logged delete some script...

cla: yes

So this is a issue where v8 is missing something that was used in JSC. 1. MainFile -> let worker = new Worker('primary.worker'); 2. Primary.Worker -> let subWorker = new...

I am trying to update the native dependencies within the [nativescript-braintree](https://www.npmjs.com/package/nativescript-braintree) plugin. While everything works as expected on Android side, I am struggling to make the ios build process working....

I'm using a POD that has Swift code and XIBs for controllers. This is the pod that I'm using: ``` pod 'iOSPhotoEditor', :git => 'https://github.com/PeterStaev/photo-editor.git', :commit => '5f90ae8f937e1bf4ef3c46d0fda5fef715c7a5de' ``` When...