1

do you know any good documentation of Android contact tracing API that Google and iOS jointly worked on? I found one

https://blog.google/documents/55/Android_Contact_Tracing_API.pdf

But the documentation does not make any sense to me.

Do you guys know link of any good doc?

Epsi95
  • 8,832
  • 1
  • 16
  • 34

1 Answers1

2

You might want to try out this reference application Google released. You can run it, but you won't be able to enable exposure notifications or call the other APIs unless your account has been authorized by Google as associated with a public health authority.

If you are not working for an authorized public health authority, you can still write code to use Exposure Notification transmissions, but not using the custom APIs. Read here for how you can do that

davidgyoung
  • 63,876
  • 14
  • 121
  • 204
  • Rather than using Google API , I ended up using your library for my project. But there is a challenge. I am using the library for scanning and broadcasting in the foreground. It worked for sometime, when I left my phone. But after a while (my phone idle for long period) my external detector was unable to detect which means my phone stopped transmitting. But as my app running in foreground, the scanning and transmission should go on forever isn't it? I am using scan between time 10000 and scan period as 1100. – Epsi95 Jun 06 '20 at 19:32
  • gist link https://gist.github.com/epsi95/a0c49c065494d4399f3e20999b7e5059 – Epsi95 Jun 06 '20 at 19:54
  • Happy to answer this if you create a new question. No room to answer in comments. – davidgyoung Jun 07 '20 at 00:12