-
-
Notifications
You must be signed in to change notification settings - Fork 198
Closed
Description
Tell us about the problem
I get an error Failed to verify bitcode in TNSCore.framework/TNSCore every time I try to run the demo of a Pro UI plugin (for example nativescript-ui-listview) on a device.
It seems to be related to the way the plugin is referenced. If I reference it from npm, demo’s node_modules include both nativescript-ui-listview and (its dependency) nativescript-ui-core, then the demo runs successfully.
However if I reference it from its source directory, demo’s node_modules include only nativescript-ui-listview, but (its dependency) nativescript-ui-code is inside listview’s own node_modules, then I get the above error.
Which platform(s) does your issue occur on?
iOS
Please provide the following version numbers that your issue occurs with:
- CLI: 4.0.2
- Cross-platform modules: 4.0.1
- Runtime(s): 4.0.1
Please tell us how to recreate the issue in as much detail as possible.
- Clone this repo: https://github.com/NativeScript/nativescript-ui-listview
- Go to
src - Run
npm run demo.ios
VladimirAmiorkov