You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 ;)
The text was updated successfully, but these errors were encountered:
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:
Update them to be
Everything is happy then. You figure out the pull requests yet ;)
The text was updated successfully, but these errors were encountered: