Ricardo Gomes

Results 19 comments of Ricardo Gomes

any update on this? Documentation is very lacking and misleading

I would like to add 2 points for consideration: - What about repository naming convention? The repository names in the community seem to follow the "react-native-*" but other don't (ex:...

> > @daominhsangvn i could not find your fork > > Here the Github: https://github.com/newoceaninfosys/react-native-beacons-manager > Npm: https://www.npmjs.com/package/@nois/react-native-beacons-manager Crashes on app start :'( Why not submit a pull request?

In case of iOS, you need to add a call to Beacons.allowsBackgroundLocationUpdates(true) in order to activate it (default is false). Do it after you request the permissions (`Beacons.requestAlwaysAuthorization();`) just to...

@ilyash where shall we to put this? where to store the binaries (github or some other repository) and how to build (github action, instructions on release, etc)?

@ilyash-b this was to keep in sync with the instructions from the above version.h. We should handle it the same way we decide to handle the version.h :)

@ilyash-b They are the images for the custom architecture builds from the https://github.com/uraimo/run-on-arch-action. They are stored locally on the repository in order for the action to not have to recreate...

Example of bash to extract a field: ``` #!/usr/bin/env bash FILE=$1 KEY=$2 while read line;do if [[ $line =~ ^\[([^\ ]+)\ *\]$ ]];then section="${BASH_REMATCH[1]}" continue fi if [[ $line =~...

Flatpak paradigm to installation and run are substantial different from the rest of the package managers. Since we already have the snap and direct curl installation, we'll skip this for...

https://github.com/popey/unsnap should simplify things :)