Tijs Teulings
Tijs Teulings
Isn’t fused location the preferred way to get location on android these days. As implemented by https://github.com/MustansirZia/react-native-fused-location for instance...
Right that seems like a sensible path. So the main package would provide a stable API while the actual location service is provided by a 'plugin' or 'driver', with some...
Looks good to go! I'd love for this to be merged so i can use the 'official' version in my project instead of a fork... @tomchristie
It might still need a quick; ``` python manage.py schemamigration userroles --update --initial ``` as the migrations are not updated yet to reflect the other changes...
i think you can only go so far in supporting all of these. if you've already run the migration nothing will happen if you upgrade django-user-roles which is probably what...
While workarounds are nice this is still a valid issue. So I hope the reload keyboard shortcut will be change in upcoming react native versions?
"I also wonder if storing the date in UTC and letting the front-end worry about displaying it in the correct timezone might be the way to go." well that does...
is there already a fix for this? i'm running into the same problem...
The get_user_model bit makes this work too though: ``` 'Meta': {'object_name': User.__name__, 'db_table': "'%s'" % User._meta.db_table}, ``` Maybe there's a cleaner way to solve that as well?
My current approach is something i picked from other projects, i don't think there is a gold standard for this yet. would be nice if there was a 1.5 migration...