Valentin
Valentin
Getting the same on a simple read with a query ```ts const trips = Object.values( ( await app .database() .ref('trips') .orderByChild('type') .equalTo('trip') .limitToFirst(100) .once('value') ).val() ); ``` ``` PID 6554...
Sure, that's a good idea! If you could link me that'd be great :+1:
The challenges.bpc is loaded to the database only once when the app is loaded. What you could do is store the challenges version somewhere in the App and then import...
You'd have to give them only the added questions in the bpc. I agree it's not a very good solution. I believe what I posted above would be the most...
You could do this but it will remove all user progress. For that you'd just need to change the number in https://github.com/Kamshak/BrainPhaser/blob/master/brainphaserdaogenerator/src/main/java/de/fhdw/ergoholics/brainphasergenerator/BrainphaserDaoGenerator.java#L14
Yep that's correct. Just thought of another way: You could use the DB migration to run your question migrations as well and change the DB version whenever you add questions....
@tonyesna: Please open a new issue next time :) What you need to do is change the database name [here](https://github.com/Kamshak/BrainPhaser/blob/9ff28f27550bab7a33d46e7df1902ff51b423e73/app/src/main/java/de/fhdw/ergoholics/brainphaser/BrainPhaserApplication.java#L29), change ``prodDb`` to ``/mnt/sdcard/database_name.db``
@zfc0812 the way it works at the moment is by spaced repetition, they'll get asked the questions again after a specified period of time (you can set it in the...
@farhannaseer88 please see #56
Very similar use case here, same problem. @timboudreau how did you solve this in the end? @skeggse any thoughts?