Hi folks,
in my project I overwrite the L-Function in app.js:
// app.js: var L = function(key) { return require('L')(key); };In L.js:
module.exports = function(key) { var Model = new (require('adapter/model'))(); return Model.L(key); };In model.js the method L makes a sql select. The sqlite db will mirrored at start time of app.
Since newest SDk-version it doesn't work. The L.js will not called.
Any ideas?