Open mapo80 opened 4 years ago
Guys I've implemented a workaround but this can't be the final fix. I've changed source code during webpack operations in this way:
config.module.rules.unshift({
test: /@nativescript\/core\/ui\/core\/view\/view\.js$/,
use: [{
loader: 'string-replace-loader',
options: {
search: new RegExp("controller.animated = animated;", 'g'),
replace: '/*controller.animated = animated;*/'
},
}],
});
config.module.rules.unshift({
test: /@nativescript\/core\/ui\/core\/view\/view\.js$/,
use: [{
loader: 'string-replace-loader',
options: {
search: new RegExp("var animated = this\.viewController\.animated", 'g'),
replace: 'var animated = true;'
},
}],
});
@mapo80 I believe this has been fixed in https://github.com/NativeScript/NativeScript/commit/967d652c61fbeed6c7e8bd568c893d40308b5b58
Hi guys, because I need to enable Bitcode I've adopted new runtime and I succeeded to enable it. With new runtime I have some crashes and issues.
If I open a modal I have this log and modals do not open:
Problem is on these line:
controller.animated = animated;
Thanks for your help and support.