Git Product home page Git Product logo

contact-tracing-app-tracerx's People

Contributors

dxganta avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

contact-tracing-app-tracerx's Issues

FIRESTORE SETUP

love and appreciate your work. i'm kindly requesting help on how your firestore collection is setup?

Anonymizing

I think tou can (and should) anonymizing the data (not only the user view, really anonymizing) using other data source like bluetooth or wifi closeness between users.
If you need whatever, count with me :)

ArgumentError (Invalid argument: Instance of 'Future<LocationData>')

Okay so, I updated the firebase dependencies, linking it to my account, but for some weird reason,
whenever I'm testing out the app, I keep getting this Argument Error. To debug it, i also tried printing out the 'name' but with no luck. It keeps returning 'No Such Document'.
issue

`void discovery() async {
try {
bool a = await Nearby().startDiscovery(loggedInUser.email, strategy,
onEndpointFound: (id, name, serviceId) async {
print('I saw id:$id with name:$name'); // the name here is an email

    var docRef =
        _firestore.collection('users').document(loggedInUser.email);

    //  When I discover someone I will see their email and add that email to the database of my contacts
    //  also get the current time & location and add it to the database
    docRef.collection('met_with').document(name).setData({
      'username': await getUsernameOfEmail(email: name),
      'contact time': DateTime.now(),
      'contact location': location.getLocation(),
    });
  }, onEndpointLost: (id) {
    print(id);
  });
  print('DISCOVERING: ${a.toString()}');
} catch (e) {
  print(e);
}

}`

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.