Carlos Macasaet
Carlos Macasaet
@laxuscullen you won't be able to use any of the methods that accept a base64-encoded `String`. Instead, you'll need to use the [Android-native utility](https://developer.android.com/reference/android/util/Base64) to convert the base64 `String` into...
@luckysenjaya do you have a full sample Android project that reproduces this issue? I tried to create a simple "hello world" app that generates then decrypts a token, but I...
I'm considering making `Generator` type-aware so it can abstract POJO serialisation.
Draft #172 includes a proposal for a builder and a factory as well as examples. There is no reason they couldn't both be used. Factory Usage: Token token = factory.generateToken(...
@fmeum can you share documentation on how to add a corpus entry? It was not clear to me how to do that.
The CI server failures were also encountered and fixed in scope of #12 . I can port those changes here if desired.
As an aside, while developing this, I noticed that the project builds fine with Java 9, but fails with Java 10 or higher. It produces this error during the `testCompile`...
Is the intention to introduce a new `io.opencensus.trace.propagation.TextFormat` implementation that extracts the `b3` header (or `tracestate` header with "b3" prefix) and injects the `b3` header?
@adriancole I provided two potential implementations. #1989 introduces a new `TextFormat` implementation and #1990 modifies the existing `B3Format`. The former extracts b3 from the single format as well as injects...
@adriancole that makes sense. I can remove the `tracestate` handling from the b3 `TextFormat`. A traceparent / tracestate format can delegate to other formats as necessary. Should I add more...