dominic-simplan
dominic-simplan
Apple will reject new apps which use this plugin from April 2020 and updates of apps from December 2020 as long as this plugin has a reference to the UIWebView.
Probably duplicate of #316.
@janpio thank you for taking the time to investige. I can confirm your behaviour with an empty project, but I still get the described issue within my project, even with...
So it seems like fast-csv was actually an issue but has been fixed in the meanwhile and this should not cause errors anymore. However, the unsafe-eval Error is still thrown,...
We are using `dxForm*Item` (e.g. `dxFormSimpleItem`) to create form items in separate locations from where they are actually added to the form.
Also seems like `await queryRunner.query("PRAGMA foreign_keys=OFF;");` as a workaround has no effect but I don't know why :-(
The workaround is to change the foreign_key before starting the migration: ``` await connection.query("PRAGMA foreign_keys=OFF;"); await connection.runMigrations(); await connection.query("PRAGMA foreign_keys=ON;"); ``` The foreign_key cannot be changed in the migration itself...
Nevermind, issue was that I was excluding the node_modules folder when configuring the ts-loader in the webpack-config.js. Sorry for creating this ticket.