Android Silent Failure
Hello again :)
Just realized today my app just doesn't run at all on Android. Sat at the "Loading dots" screen and never launched ended up there is a type error that only causes an issue on android, so its all good on iOS. The problem is with Transaction callbacks, they must be the proper type or it will fail (so they must be a function)
After much logging I was able to catch the error FYI it is this error "TypeError: Transaction error callback must be of valid type."
To fix this simply update lines 174 & 179 of SqliteStorage.js
Currently they read:
}], null, null);
Update them to be
}], Ext.emptyFn, Ext.emptyFn);
Everything is happy then. You figure out the pull requests yet ;)
Hello aphex,
Do you continue to use this plugin with Android ? Is this working well after this modification that you suggested here ?
Thanks for feedback.
Can